国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

C#中比較常用的DateTime結構的使用方法

2020-01-24 01:24:07
字體:
來源:轉載
供稿:網友

在項目開發中,經常會碰到日期處理。比如查詢中,可能會經常遇到按時間段查詢,有時會默認取出一個月的數據。當我們提交數據時,會需要記錄當前日期,等等。下面就看看一些常用的方法

首先,DateTime是一個struct。很多時候,會把它當成一個類。但它真的不是,MSDN上的描述如下:

DateTime結構:表示時間上的一刻,通常以日期和當天的時間表示。語法:

[SerializableAttribute]public struct DateTime : IComparable, IFormattable,   IConvertible, ISerializable, IComparable<DateTime>, IEquatable<DateTime>

一、DateTime.Now屬性

實例化一個DateTime對象,可以將指定的數字作為年月日得到一個DateTime對象。而DateTime.Now屬性則可獲得當前時間。如果你想按年、月、日分別統計數據,也可用DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day獲取。同理,當前的時分秒也可以這樣的方式獲取。還可以在當前時間加上一個段時間等操作。    

static void Main(string[] args)    {      DateTime newChina = new DateTime(1949, 10, 1);      Console.WriteLine(newChina);      Console.WriteLine("當前時間:");      Console.WriteLine("{0}年,{1}月,{2}日",DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day);      Console.WriteLine("{0}時,{1}分, {2}秒",DateTime.Now.Hour, DateTime.Now.Minute, DateTime.Now.Second);      Console.WriteLine("三天后:{0}",DateTime.Now.AddDays(3));      Console.ReadLine();    }

結果:

二、ToString方法

 DateTime的ToString方法有四種重載方式。其中一個重載方式允許傳入String,這就意味著你可以將當前DateTime對象轉換成等效的字符串形式。比如我們將當前時間輸出,日期按yyyy-mm-dd格式,時間按hh:mm:ss格式。

Console.WriteLine(DateTime.Now.ToString("yyyy-MM-dd"));  Console.WriteLine(DateTime.Now.ToString("hh:mm:ss"));

還有一個重載形式是需要提供IFormatProvider,使用指定的區域性特定格式信息將當前 DateTime 對象的值轉換為它的等效字符串表示形式。

static void Main(string[] args)    {      CultureInfo jaJP = new CultureInfo("ja-JP");      jaJP.DateTimeFormat.Calendar = new JapaneseCalendar();      DateTime date1 = new DateTime(1867, 1, 1);      DateTime date2 = new DateTime(1967, 1, 1);            try      {        Console.WriteLine(date2.ToString(jaJP));        Console.WriteLine(date1.ToString(jaJP));      }      catch (ArgumentOutOfRangeException)      {        Console.WriteLine("{0:d} is earlier than {1:d} or later than {2:d}",                 date1,                 jaJP.DateTimeFormat.Calendar.MinSupportedDateTime,                 jaJP.DateTimeFormat.Calendar.MaxSupportedDateTime);      }      Console.ReadLine();    }

結果:

三、DaysInMonth方法及IsLeapYear方法

 DaysInMonth方法需要兩個Int32型參數,返回指定年份指定月份的天數。關于月份的天數,多數只有2月需要特殊照顧一下。剩余的月份,無論哪一年的天數都是固定的。而二月呢,不但不是其他月份的30天或31天,她還分個閏年非閏年。

static void Main(string[] args)    {      Console.WriteLine("2000年至2015年中二月的天數");      for (int i = 2000; i < 2015; i++)      {        Console.WriteLine("{0}年2月有:{1}天", i, DateTime.DaysInMonth(i, 2));      }      Console.ReadLine();    }

輸出結果:

從輸出結果中可以看出,2月為29天的年份為閏年。但其實DateTime還提供了判斷閏年的方法IsLeapYear,該方法只要一個Int32的參數,若輸入的年份是閏年返回true,否則返回false。(.Net Framework就是這么貼心,你要的東西都給你封裝好了,直接拿來用好了。)要是沒這個方法呢,得自己去按照閏年的規則去寫個小方法來判斷。

static void Main(string[] args)    {      Console.WriteLine("2000年至2015年中二月的天數");      for (int i = 2000; i < 2015; i++)      {        if (DateTime.IsLeapYear(i))          Console.WriteLine("{0}年是閏年,2月有{1}天", i, DateTime.DaysInMonth(i, 2));        else          Console.WriteLine("{0}年是平年,2月有{1}天",i,DateTime.DaysInMonth(i,2));      }      Console.ReadLine();    }

微軟現在已經將.NetFramework開源了,這意味著可以自己去查看源代碼了。附上DateTime.cs的源碼鏈接,以及IsLeapYear方法的源代碼。雖然僅僅兩三行代碼,但在實際開發中,你可能一時間想不起閏年的計算公式,或者拿捏不準。封裝好的方法為你節省大量時間。

DateTime.cs源碼中IsLeapYear方法

   // Checks whether a given year is a leap year. This method returns true if    // year is a leap year, or false if not.    //    public static bool IsLeapYear(int year) {      if (year < 1 || year > 9999) {        throw new ArgumentOutOfRangeException("year", Environment.GetResourceString("ArgumentOutOfRange_Year"));      }      Contract.EndContractBlock();      return year % 4 == 0 && (year % 100 != 0 || year % 400 == 0);    }

文章中介紹了幾個算是比較常用的方法,希望對大家的學習有所幫助,平時多閱讀相關文章,積累經驗。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 积石山| 庄浪县| 麻栗坡县| 星座| 尚志市| 克山县| 浠水县| 吉林省| 广安市| 皮山县| 佳木斯市| 油尖旺区| 阳曲县| 淄博市| 鄄城县| 左云县| 尖扎县| 大姚县| 宁海县| 库车县| 罗城| 黄山市| 南雄市| 基隆市| 巴里| 桐庐县| 新竹县| 绥芬河市| 潢川县| 广安市| 磐安县| 宜阳县| 克什克腾旗| 南宁市| 德庆县| 永清县| 虹口区| 神农架林区| 兴安县| 华宁县| 亚东县|