C#中比较常用的DateTime结构的使用方法

在项目开发中,经常会碰到日期处理。比如查询中,可能会经常遇到按时间段查询,有时会默认取出一个月的数据。当我们提交数据时,会需要记录当前日期,等等。下面就看看一些常用的方法

首先,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);
    }

文章中介绍了几个算是比较常用的方法,希望对大家的学习有所帮助,平时多阅读相关文章,积累经验。

(0)

相关推荐

  • c#友好显示日期 c#日期datetime使用方法

    复制代码 代码如下: #region 友好显示时间        /// <summary>        /// 友好显示时间        /// </summary>        /// <param name="date"></param>        /// <returns></returns>        public static string ShowTime(DateTime date) 

  • C# DateTime.ToString根据不同语言生成相应的时间格式

    我想大家对DateTime.ToString()方法的用法肯定已经非常熟悉了,但我想大家用过的大部分用法都是:DateTime.ToString("format"),不过本文想讲述的是它的另一个重载方法DateTime.ToString("format",IFormatProvider). 如果大家做的项目中有多语言的需求的话,那么肯定少不了会有的功能要显示一个时间,由于文差异域每种语言用户对时间格式的需求肯定是不一样的,比如英文中的时间格式是:12/2/2013

  • C#时间格式化(Datetime)用法详解

    Datetime.ToString(String, IFormatProvider) 参数format格式详细用法: 格式字符 关联属性/说明 d ShortDatePattern D LongDatePattern f 完整日期和时间(长日期和短时间) F FullDateTimePattern(长日期和长时间) g 常规(短日期和短时间) G 常规(短日期和长时间) m.M MonthDayPattern r.R RFC1123Pattern s 使用当地时间的 SortableDateTi

  • c# DateTime常用操作实例(datetime计算时间差)

    复制代码 代码如下: #region DateTime操作 public class C3    {        //DateTime常用的操作        public static void Fun1()        {            //格式:2012-8-16 11:21:29            Console.WriteLine("当前时间:{0}", DateTime.Now.ToString()); //格式:2012-8-16 0:00:00     

  • 关于C#中DateTime常用方法概述

    DateTime.Now.ToShortTimeString() DateTime dt = DateTime.Now; dt.ToString();//2005-11-5 13:21:25 dt.ToFileTime().ToString(); //127756416859912816 dt.ToFileTimeUtc().ToString();//127756704859912816 dt.ToLocalTime().ToString();//2005-11-5 21:21:25 dt.To

  • C#、.Net中把字符串(String)格式转换为DateTime类型的三种方法

    方式一:Convert.ToDateTime(string) 复制代码 代码如下: Convert.ToDateTime(string) 注意:string格式有要求,必须是yyyy-MM-dd hh:mm:ss 方式二:Convert.ToDateTime(string, IFormatProvider) 复制代码 代码如下: DateTimeFormatInfo dtFormat = new System.GlobalizationDateTimeFormatInfo(); dtFormat

  • c# datetime 格式化大全

    复制代码 代码如下: //c datetime 格式化DateTime dt = DateTime.Now;Label1.Text = dt.ToString();//2005-11-5 13:21:25Label2.Text = dt.ToFileTime().ToString();//127756416859912816Label3.Text = dt.ToFileTimeUtc().ToString();//127756704859912816Label4.Text = dt.ToLoca

  • C# 中DateTime 的使用技巧汇总

    //C# 根据当前时间获取本周.下周.本月.下月.本季度等时间段 DateTime dt = DateTime.Now;  //当前时间 DateTime startWeek = dt.AddDays(1 - Convert.ToInt32(dt.DayOfWeek.ToString("d")));  //本周周一 DateTime endWeek = startWeek.AddDays(6);  //本周周日 DateTime startMonth = dt.AddDays(1 -

  • C#中DateTime日期类型格式化显示方法汇总

    本文汇总了常用的DateTime日期类型格式化显示方法,方便读者在使用的时候参考借鉴一下.具体如下所示: 1.绑定时格式化日期方法: <ASP:BOUNDCOLUMN DATAFIELD= "JoinTime " DATAFORMATSTRING= "{0:yyyy-MM-dd} " > <ITEMSTYLE WIDTH= "18% " > </ITEMSTYLE > </ASP:BOUNDCOLUMN

  • C#日期控件datetimepicker保存空值的三种方法

    方法一(推荐): 设置datetimepicker的属性ShowCheckBox为true 在窗口初始化时候,添加代码this.datetimepicker1.Checked = false; 保存日期值入库的时候,就可以根据if(this.datetimepicker1.Checked ==false),保存空值. 方法二: 在窗口初始化函数中添加: 复制代码 代码如下: this.dateTimePicker1.Format=DateTimePickerFormat.Custom; this

  • c#中DateTime.Now函数的使用详解

    复制代码 代码如下: //2008年4月24日     System.DateTime.Now.ToString("D");     //2008-4-24     System.DateTime.Now.ToString("d");     //2008年4月24日 16:30:15     System.DateTime.Now.ToString("F");     //2008年4月24日 16:30     System.DateTime

  • c#详解datetime使用示例

    实例: 用户输入一个日期,要求输出这个日期是星期几和在这一年中的第几天: 复制代码 代码如下: //声明一个DateTime类型的变量用于存放用户输入的日期DateTime dt;Console.WriteLine("请输入日期:(例如:2000-01-01 或 2000/01/01)");//把输入的日期字符串转换成日期格式类型dt = DateTime.Parse(Console.ReadLine());//因为DayOfWeek返回的是0.1.2.3.4.5.6,分别对应的是日.

  • 深入Unix时间戳与C# DateTime时间类型互换的详解

    Unix时间戳最小单位是秒,开始时间为格林威治标准时间1970-01-01 00:00:00ConvertIntDateTime方法的基本思路是通过获取本地时区表示Unixk开始时间,加上Unix时间值(即过去的秒数). ConvertDateTimeInt方法的基本思路是通过刻度数差,再把刻度数转换为秒数,当然要说明的是,我这里返回的是double类型,意义上并非是真正的Unix时间戳格式.要获取真正Unix时间戳的,只获取整数部分就可以了. 复制代码 代码如下: dangranusing S

  • c# datetime方法应用介绍

    随着工作的需要,也算是写一个为自己留着的帮助文档吧. System.DateTime currentTime=new System.DateTime(); //实例化一个 datetime 对象 当前 年月日时分秒 currentTime=System.DateTime.Now; 当前 年 int 年=currentTime.Year; 当前 月 int 月=currentTime.Month; 当前 日 int 日=currentTime.Day; 当前 时 int 时=currentTime

随机推荐