ホームページ >バックエンド開発 >C#.Net チュートリアル >C# の日時
C# では、DateTime は構造体です。したがって、これは値型であり、時刻の瞬間を表すために使用されます。日付と時刻を表すために使用されます。 DateTime 型の値の範囲は、0001 年 1 月 1 日の午前 12:00:00 から西暦 9999 年 12 月 31 日の午後 11:59:59 までです。DateTime の値は値型であるため、null にすることはできません。 DateTime 値を初期化するには、DateTime コンストラクターのオーバーロードのいずれかを呼び出すことができます。プロパティまたはメソッドから返された値を DateTime オブジェクトに割り当てることもできます。
構文:
以下は、DateTime 構造体の新しいインスタンスを初期化する構文です。
DateTime date_time = new DateTime();
ここで、date_time は、DateTime 型のインスタンスに与えられたユーザー定義の名前です。 「new」演算子を使用してこのインスタンスを初期化しました。上記の構文では、暗黙的なパラメーターなしのコンストラクターを使用して、DateTime をデフォルト値に初期化しています。 DateTime コンストラクターのオーバーロードを使用して DateTime インスタンスを初期化することもできます。
C# では、いくつかの方法で DateTime を操作し、DateTime 変数に値を割り当てることができます。
DateTime dateTime = new DateTime(2020, 2, 8, 7, 32, 56);
上記のステートメントは、特定の年、月、日、時、分、秒の DateTime 構造体の新しいインスタンスを初期化します。
public DateTime(int year, int month, int day, int hour, int minute, int second);
public DateTime(long ticks);
public DateTime(long ticks, DateTimeKind kind);
public DateTime(int year, int month, int day);
public DateTime(int year, int month, int day, Calendar calendar);
public DateTime(int year, int month, int day, int hour, int minute, int second, DateTimeKind kind);
public DateTime(int year, int month, int day, int hour, int minute, int second, Calendar calendar);
public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond);
public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, DateTimeKind kind);
public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, Calendar calendar);
public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, Calendar calendar, DateTimeKind kind);
DateTime dateTime = DateTime.Now;
これにより、現在の日付と時刻が DateTime 変数に割り当てられます。
string str = "6/2/2020 9:20:40 AM"; DateTime dateTime = DateTime.Parse(str, System.Globalization.CultureInfo.InvariantCulture);
上記の変換は、Parse()、ParseExact()、TryParse()、および TryParseExact() メソッドを使用して実行できます。
文字列を解析して DateTime オブジェクトにする方法の例をいくつか示します。
DateTime によって提供されるプロパティとメソッドを使用して、現在の日付と時刻と明日の日付と時刻を表示する例:
コード:
using System; using System.IO; namespace ConsoleApp4 { class Program { public static DateTime GetNextDay() { //getting next day using AddDays() method return DateTime.Now.AddDays(1); } public static void Main() { //displaying current date and time using 'Now' property of DateTime Console.WriteLine("Current date and time: {0}", DateTime.Now); DateTime dateTime = GetNextDay(); Console.WriteLine("Tomorrow date and time: {0}", dateTime); Console.ReadLine(); } } }
出力:
たとえば、ユーザーからの入力として年を取得し、DateTime.IsLeap Year() メソッドを使用してそれがうるう年かどうかを確認します。
コード:
using System; using System.IO; namespace ConsoleApp4 { class Program { public static void Main() { try { //taking year as input from user Console.WriteLine("Please enter a year"); int year = Convert.ToInt32(Console.ReadLine()); //checking if entered year is a leap year or not //using DateTime.IsLeapYear() method Console.WriteLine("\n Using IsLeapYear() method:"); if (DateTime.IsLeapYear(year)) { Console.WriteLine(year + " is a leap year"); } else { Console.WriteLine(year + " is not a leap year"); } //checking if entered year is a leap year or not //using DateTime.DaysInMonth() method Console.WriteLine("\n Using DaysInMonth() method:"); if (DateTime.DaysInMonth(year, 2) == 29) { Console.WriteLine(year + " is a leap year"); } else { Console.WriteLine(year + " is not a leap year"); } } catch(Exception ex) { Console.WriteLine(ex.Message); } Console.ReadLine(); } } }
出力:
たとえば、年の最初と最後の日を取得します。
コード:
using System; using System.IO; namespace ConsoleApp4 { class Program { public static void Main() { DateTime dateTime = DateTime.Now; //displaying first day of current year DateTime firstDay = new DateTime(dateTime.Year, 1, 1); Console.WriteLine("First day of {0} is {1}", dateTime.Year, firstDay); //getting first day of next year DateTime dateTimeNext = new DateTime(dateTime.Year + 1, 1, 1); //subtracting one day from the first day of next year //to get the last day of current year DateTime lastday = dateTimeNext.AddDays(-1); Console.WriteLine("Last day of {0} is {1}", dateTime.Year, lastday); Console.ReadLine(); } } }
出力:
dateTime 構造体は、日付と時刻を操作するために使用されます。日付と時刻を格納するデータ型として使用されます。 DateTime は、日付と時刻を操作するためのプロパティとメソッドを提供します。 DateTime は構造体であり、値型です。 null にすることはできません。
以上がC# の日時の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。