C# 中 DateTime 的各种使用(增加一年、一月、一个季度等等用法)
2022/8/11 14:27:03
本文主要是介绍C# 中 DateTime 的各种使用(增加一年、一月、一个季度等等用法),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
获得当前系统时间: DateTime dt = DateTime.Now; Environment.TickCount可以得到“系统启动到现在”的毫秒值 DateTime now = DateTime.Now; Console.WriteLine(now.ToString("yyyy-MM-dd")); //按yyyy-MM-dd格式输出s Console.WriteLine(dt.ToString()); // 26/11/2009 AM 11:21:30 Console.WriteLine(dt.ToFileTime().ToString()); // 129036792908014024 // Converts the value of the current System.DateTime object to a Windows file time Console.WriteLine(dt.ToFileTimeUtc().ToString()); // 129036792908014024 // Converts the value of the current System.DateTime object to a Windows file time Console.WriteLine(dt.ToLocalTime().ToString()); // 26/11/2009 AM 11:21:30 // Converts the value of the current System.DateTime object to local time. Console.WriteLine(dt.ToLongDateString().ToString()); // 2009年11月26日 Console.WriteLine(dt.ToLongTimeString().ToString()); // AM 11:21:30 Console.WriteLine(dt.ToOADate().ToString()); // 40143.4732731597 Console.WriteLine(dt.ToShortDateString().ToString()); // 26/11/2009 Console.WriteLine(dt.ToShortTimeString().ToString()); // AM 11:21 Console.WriteLine(dt.ToUniversalTime().ToString()); // 26/11/2009 AM 3:21:30 Console.WriteLine(dt.Year.ToString()); // 2009 Console.WriteLine(dt.Date.ToString()); // 26/11/2009 AM 12:00:00 Console.WriteLine(dt.DayOfWeek.ToString()); // Thursday Console.WriteLine(dt.DayOfYear.ToString()); // 330 Console.WriteLine(dt.Hour.ToString()); // 11 Console.WriteLine(dt.Millisecond.ToString()); // 801 (毫秒) Console.WriteLine(dt.Minute.ToString()); // 21 Console.WriteLine(dt.Month.ToString()); // 11 Console.WriteLine(dt.Second.ToString()); // 30 Console.WriteLine(dt.Ticks.ToString()); // 633948312908014024 Console.WriteLine(dt.TimeOfDay.ToString()); // 12:29:51.5181524 // Gets the time of day for this instance. // 返回 A System.TimeSpan that represents the fraction of the day that has elapsed since midnight. Console.WriteLine(dt.ToString()); // 26/11/2009 PM 12:29:51 Console.WriteLine(dt.AddYears(1).ToString()); // 26/11/2010 PM 12:29:51 Console.WriteLine(dt.AddDays(1.1).ToString()); // 27/11/2009 PM 2:53:51 Console.WriteLine(dt.AddHours(1.1).ToString()); // 26/11/2009 PM 1:35:51 Console.WriteLine(dt.AddMilliseconds(1.1).ToString()); //26/11/2009 PM 12:29:51 Console.WriteLine(dt.AddMonths(1).ToString()); // 26/12/2009 PM 12:29:51 Console.WriteLine(dt.AddSeconds(1.1).ToString()); // 26/11/2009 PM 12:29:52 Console.WriteLine(dt.AddMinutes(1.1).ToString()); // 26/11/2009 PM 12:30:57 Console.WriteLine(dt.AddTicks(1000).ToString()); // 26/11/2009 PM 12:29:51 Console.WriteLine(dt.CompareTo(dt).ToString()); // 0 Console.WriteLine(dt.Add(new TimeSpan(1,0,0,0)).ToString()); // 加上一个时间段 (注: System.TimeSpan为一个时间段,构造函数如下 public TimeSpan(long ticks); // ticks: A time period expressed in 100-nanosecond units. //nanosecond:十亿分之一秒 new TimeSpan(10,000,000) 为一秒 public TimeSpan(int hours, int minutes, int seconds); public TimeSpan(int days, int hours, int minutes, int seconds); public TimeSpan(int days, int hours, int minutes, int seconds, int milliseconds); ) Console.WriteLine(dt.Equals("2005-11-6 16:11:04").ToString()); // False Console.WriteLine(dt.Equals(dt).ToString()); // True Console.WriteLine(dt.GetHashCode().ToString()); // 1103291775 Console.WriteLine(dt.GetType().ToString()); // System.DateTime Console.WriteLine(dt.GetTypeCode().ToString()); // DateTime long Start = Environment.TickCount; //单位是毫秒 long End = Environment.TickCount; Console.WriteLine("Start is : "+Start); Console.WriteLine("End is : "+End); Console.WriteLine("The Time is {0}",End-Start); Console.WriteLine(dt.GetDateTimeFormats('s')[0].ToString()); //2009-11-26T13:29:06 Console.WriteLine(dt.GetDateTimeFormats('t')[0].ToString()); //PM 1:29 Console.WriteLine(dt.GetDateTimeFormats('y')[0].ToString()); //2009年11月 Console.WriteLine(dt.GetDateTimeFormats('D')[0].ToString()); //2009年11月26日 Console.WriteLine(dt.GetDateTimeFormats('D')[1].ToString()); //星期四, 26 十一月, 2009 Console.WriteLine(dt.GetDateTimeFormats('D')[2].ToString()); //26 十一月, 2009 Console.WriteLine(dt.GetDateTimeFormats('D')[3].ToString()); //星期四 2009 11 26 Console.WriteLine(dt.GetDateTimeFormats('M')[0].ToString()); //26 十一月 Console.WriteLine(dt.GetDateTimeFormats('f')[0].ToString()); //2009年11月26日 PM 1:29 Console.WriteLine(dt.GetDateTimeFormats('g')[0].ToString()); //26/11/2009 PM 1:29 Console.WriteLine(dt.GetDateTimeFormats('r')[0].ToString()); //Thu, 26 Nov 2009 13:29:06 GMT (注: 常用的日期时间格式: 格式 说明 输出格式 d 精简日期格式 MM/dd/yyyy D 详细日期格式 dddd, MMMM dd, yyyy f 完整格式 (long date + short time) dddd, MMMM dd, yyyy HH:mm F 完整日期时间格式 (long date + long time) dddd, MMMM dd, yyyy HH:mm:ss g 一般格式 (short date + short time) MM/dd/yyyy HH:mm G 一般格式 (short date + long time) MM/dd/yyyy HH:mm:ss m,M 月日格式 MMMM dd s 适中日期时间格式 yyyy-MM-dd HH:mm:ss t 精简时间格式 HH:mm T 详细时间格式 HH:mm:ss ) Console.WriteLine(string.Format("{0:d}", dt)); //28/12/2009 Console.WriteLine(string.Format("{0:D}", dt)); //2009年12月28日 Console.WriteLine(string.Format("{0:f}", dt)); //2009年12月28日 AM 10:29 Console.WriteLine(string.Format("{0:F}", dt)); //2009年12月28日 AM 10:29:18 Console.WriteLine(string.Format("{0:g}", dt)); //28/12/2009 AM 10:29 Console.WriteLine(string.Format("{0:G}", dt)); //28/12/2009 AM 10:29:18 Console.WriteLine(string.Format("{0:M}", dt)); //28 十二月 Console.WriteLine(string.Format("{0:R}", dt)); //Mon, 28 Dec 2009 10:29:18 GMT Console.WriteLine(string.Format("{0:s}", dt)); //2009-12-28T10:29:18 Console.WriteLine(string.Format("{0:t}", dt)); //AM 10:29 Console.WriteLine(string.Format("{0:T}", dt)); //AM 10:29:18 Console.WriteLine(string.Format("{0:u}", dt)); //2009-12-28 10:29:18Z Console.WriteLine(string.Format("{0:U}", dt)); //2009年12月28日 AM 2:29:18 Console.WriteLine(string.Format("{0:Y}", dt)); //2009年12月 Console.WriteLine(string.Format("{0}", dt)); //28/12/2009 AM 10:29:18 Console.WriteLine(string.Format("{0:yyyyMMddHHmmssffff}", dt)); //200912281029182047 计算2个日期之间的天数差 DateTime dt1 = Convert.ToDateTime("2007-8-1"); DateTime dt2 = Convert.ToDateTime("2007-8-15"); TimeSpan span = dt2.Subtract(dt1); int dayDiff = span.Days ; 计算某年某月的天数 int days = DateTime.DaysInMonth(2009, 8); days = 31; 给日期增加一天、减少一天 DateTime dt =DateTime.Now; dt.AddDays(1); //增加一天 dt本身并不改变 dt.AddDays(-1);//减少一天 dt本身并不改变 第二版更新时间:2015-12-25 23:26:53 //今天 DateTime.Now.Date.ToShortDateString(); //昨天,就是今天的日期减一 DateTime.Now.AddDays(-1).ToShortDateString(); //明天,同理,加一 DateTime.Now.AddDays(1).ToShortDateString(); //本周(要知道本周的第一天就得先知道今天是星期几,从而得知本周的第一天就是几天前的那一天,要注意的是这里的每一周是从周日始至周六止 DateTime.Now.AddDays(Convert.ToDouble((0 - Convert.ToInt16(DateTime.Now.DayOfWeek)))).ToShortDateString(); DateTime.Now.AddDays(Convert.ToDouble((6 - Convert.ToInt16(DateTime.Now.DayOfWeek)))).ToShortDateString(); //如果你还不明白,再看一下中文显示星期几的方法就应该懂了 //由于DayOfWeek返回的是数字的星期几,我们要把它转换成汉字方便我们阅读,有些人可能会用switch来一个一个地对照,其实不用那么麻烦的 string[] Day = new string[] { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" }; Day[Convert.ToInt16(DateTime.Now.DayOfWeek)]; //上周,同理,一个周是7天,上周就是本周再减去7天,下周也是一样 DateTime.Now.AddDays(Convert.ToDouble((0 - Convert.ToInt16(DateTime.Now.DayOfWeek))) - 7).ToShortDateString(); DateTime.Now.AddDays(Convert.ToDouble((6 - Convert.ToInt16(DateTime.Now.DayOfWeek))) - 7).ToShortDateString(); //下周 DateTime.Now.AddDays(Convert.ToDouble((0 - Convert.ToInt16(DateTime.Now.DayOfWeek))) + 7).ToShortDateString(); DateTime.Now.AddDays(Convert.ToDouble((6 - Convert.ToInt16(DateTime.Now.DayOfWeek))) + 7).ToShortDateString(); //本月,很多人都会说本月的第一天嘛肯定是1号,最后一天就是下个月一号再减一天。当然这是对的 //一般的写法 DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString() + "1"; //第一天 DateTime.Parse(DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString() + "1").AddMonths(1).AddDays(-1).ToShortDateString();//最后一天 //巧用C#里ToString的字符格式化更简便 DateTime.Now.ToString("yyyy-MM-01"); DateTime.Parse(DateTime.Now.ToString("yyyy-MM-01")).AddMonths(1).AddDays(-1).ToShortDateString(); //上个月,减去一个月份 DateTime.Parse(DateTime.Now.ToString("yyyy-MM-01")).AddMonths(-1).ToShortDateString(); DateTime.Parse(DateTime.Now.ToString("yyyy-MM-01")).AddDays(-1).ToShortDateString(); //下个月,加去一个月份 DateTime.Parse(DateTime.Now.ToString("yyyy-MM-01")).AddMonths(1).ToShortDateString(); DateTime.Parse(DateTime.Now.ToString("yyyy-MM-01")).AddMonths(2).AddDays(-1).ToShortDateString(); //7天后 DateTime.Now.Date.ToShortDateString(); DateTime.Now.AddDays(7).ToShortDateString(); //7天前 DateTime.Now.AddDays(-7).ToShortDateString(); DateTime.Now.Date.ToShortDateString(); //本年度,用ToString的字符格式化我们也很容易地算出本年度的第一天和最后一天 DateTime.Parse(DateTime.Now.ToString("yyyy-01-01")).ToShortDateString(); DateTime.Parse(DateTime.Now.ToString("yyyy-01-01")).AddYears(1).AddDays(-1).ToShortDateString(); //上年度,不用再解释了吧 DateTime.Parse(DateTime.Now.ToString("yyyy-01-01")).AddYears(-1).ToShortDateString(); DateTime.Parse(DateTime.Now.ToString("yyyy-01-01")).AddDays(-1).ToShortDateString(); //下年度 DateTime.Parse(DateTime.Now.ToString("yyyy-01-01")).AddYears(1).ToShortDateString(); DateTime.Parse(DateTime.Now.ToString("yyyy-01-01")).AddYears(2).AddDays(-1).ToShortDateString(); //本季度,很多人都会觉得这里难点,需要写个长长的过程来判断。其实不用的,我们都知道一年四个季度,一个季度三个月 //首先我们先把日期推到本季度第一个月,然后这个月的第一天就是本季度的第一天了 DateTime.Now.AddMonths(0 - ((DateTime.Now.Month - 1) % 3)).ToString("yyyy-MM-01"); //同理,本季度的最后一天就是下季度的第一天减一 DateTime.Parse(DateTime.Now.AddMonths(3 - ((DateTime.Now.Month - 1) % 3)).ToString("yyyy-MM-01")).AddDays(-1).ToShortDateString(); //下季度,相信你们都知道了。。。。收工 DateTime.Now.AddMonths(3 - ((DateTime.Now.Month - 1) % 3)).ToString("yyyy-MM-01"); DateTime.Parse(DateTime.Now.AddMonths(6 - ((DateTime.Now.Month - 1) % 3)).ToString("yyyy-MM-01")).AddDays(-1).ToShortDateString(); //上季度 DateTime.Now.AddMonths(-3 - ((DateTime.Now.Month - 1) % 3)).ToString("yyyy-MM-01"); DateTime.Parse(DateTime.Now.AddMonths(0 - ((DateTime.Now.Month - 1) % 3)).ToString("yyyy-MM-01")).AddDays(-1).ToShortDateString();
这篇关于C# 中 DateTime 的各种使用(增加一年、一月、一个季度等等用法)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-11-18微软研究:RAG系统的四个层次提升理解与回答能力
- 2024-11-15C#中怎么从PEM格式的证书中提取公钥?-icode9专业技术文章分享
- 2024-11-14云架构设计——如何用diagrams.net绘制专业的AWS架构图?
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#
- 2024-01-24Advanced .Net Debugging 1:你必须知道的调试工具