C#中時(shí)間類的使用方法詳解
c#中時(shí)間類的使用方法詳解
datetime類
datetime類是c#中最常用的時(shí)間類之一,它表示一個(gè)日期和時(shí)間??梢允褂胐atetime.now屬性獲取當(dāng)前時(shí)間,也可以使用datetime.parse方法將字符串轉(zhuǎn)換為datetime對象。
// 獲取當(dāng)前時(shí)間 datetime now = datetime.now; // 將字符串轉(zhuǎn)換為datetime對象 datetime datetime = datetime.parse("2022-01-01 12:00:00"); // 獲取當(dāng)前時(shí)間的年份 int year = now.year; // 獲取當(dāng)前時(shí)間的月份 int month = now.month; // 獲取當(dāng)前時(shí)間的日期 int day = now.day; // 獲取當(dāng)前時(shí)間的小時(shí)數(shù) int hour = now.hour; // 獲取當(dāng)前時(shí)間的分鐘數(shù) int minute = now.minute; // 獲取當(dāng)前時(shí)間的秒數(shù) int second = now.second; // 獲取當(dāng)前時(shí)間的毫秒數(shù) int millisecond = now.millisecond;
datetime類還提供了一些常用的方法和屬性,例如:
- datetime.adddays(double value):將當(dāng)前datetime對象的日期加上指定的天數(shù)。
- datetime.addhours(double value):將當(dāng)前datetime對象的時(shí)間加上指定的小時(shí)數(shù)。
- datetime.addminutes(double value):將當(dāng)前datetime對象的時(shí)間加上指定的分鐘數(shù)。
- datetime.addseconds(double value):將當(dāng)前datetime對象的時(shí)間加上指定的秒數(shù)。
- datetime.year:獲取當(dāng)前datetime對象的年份。
- datetime.month:獲取當(dāng)前datetime對象的月份。
- datetime.day:獲取當(dāng)前datetime對象的日期。
- datetime.hour:獲取當(dāng)前datetime對象的小時(shí)數(shù)。
- datetime.minute:獲取當(dāng)前datetime對象的分鐘數(shù)。
- datetime.second:獲取當(dāng)前datetime對象的秒數(shù)。
timespan類
timespan類表示時(shí)間間隔,可以用來計(jì)算兩個(gè)日期之間的時(shí)間差??梢允褂胻imespan.fromdays、timespan.fromhours、timespan.fromminutes、timespan.fromseconds等方法創(chuàng)建timespan對象。
// 創(chuàng)建一個(gè)表示1天的timespan對象 timespan oneday = timespan.fromdays(1); // 創(chuàng)建一個(gè)表示2小時(shí)的timespan對象 timespan twohours = timespan.fromhours(2); // 創(chuàng)建一個(gè)表示30分鐘的timespan對象 timespan thirtyminutes = timespan.fromminutes(30); // 創(chuàng)建一個(gè)表示10秒的timespan對象 timespan tenseconds = timespan.fromseconds(10);
timespan類還提供了一些常用的方法和屬性,例如:
- timespan.totaldays:獲取timespan對象表示的總天數(shù)。
- timespan.totalhours:獲取timespan對象表示的總小時(shí)數(shù)。
- timespan.totalminutes:獲取timespan對象表示的總分鐘數(shù)。
- timespan.totalseconds:獲取timespan對象表示的總秒數(shù)。
datetimeoffset類
datetimeoffset類表示一個(gè)日期和時(shí)間,同時(shí)包含時(shí)區(qū)信息。可以使用datetimeoffset.now屬性獲取當(dāng)前時(shí)間,也可以使用datetimeoffset.parse方法將字符串轉(zhuǎn)換為datetimeoffset對象。
// 獲取當(dāng)前時(shí)間 datetimeoffset now = datetimeoffset.now // 將字符串轉(zhuǎn)換為datetimeoffset對象 datetimeoffset datetimeoffset = datetimeoffset.parse("2022-01-01 12:00:00 +08:00");
datetimeoffset類還提供了一些常用的方法和屬性,例如:
- datetimeoffset.tolocaltime():將當(dāng)前datetimeoffset對象轉(zhuǎn)換為本地時(shí)間。
- datetimeoffset.touniversaltime():將當(dāng)前datetimeoffset對象轉(zhuǎn)換為協(xié)調(diào)世界時(shí)(utc)時(shí)間。
靜態(tài)類的封裝
using system; namespace toolbox.datetimetool { public static class datetimeextend { /// /// 獲取本日開始時(shí)間(0點(diǎn)0分0秒) /// /// /// public static datetime getdaystart(this datetime datetime) { return datetime.date; } /// /// 獲取本日結(jié)束時(shí)間(23點(diǎn)59分59秒) /// /// /// public static datetime getdayend(this datetime datetime) { return datetime.date.adddays(1).addmilliseconds(-1); } /// /// 獲取本周開始時(shí)間 /// /// /// public static datetime getweekstart(this datetime datetime) { return datetime.adddays(-(int)datetime.dayofweek + 1).getdaystart(); } /// /// 獲取本周結(jié)束時(shí)間 /// /// /// public static datetime getweekend(this datetime datetime) { return datetime.adddays(7 - (int)datetime.dayofweek).getdayend(); } /// /// 獲取本月開始時(shí)間 /// /// /// public static datetime getmonthstart(this datetime datetime) { return new datetime(datetime.year, datetime.month, 1, 0, 0, 0, 0); } /// /// 獲取本月結(jié)束時(shí)間 /// /// /// public static datetime getmonthend(this datetime datetime) { return getmonthstart(datetime).addmonths(1).addmilliseconds(-1); } /// /// 獲取本季度開始時(shí)間 /// /// /// public static datetime getseasonstart(this datetime datetime) { var time = datetime.addmonths(0 - ((datetime.month - 1) % 3)); return datetime.parse(time.adddays(-time.day + 1).tostring("yyyy/mm/dd 00:00:00")); } /// /// 獲取本季度結(jié)束時(shí)間 /// /// /// public static datetime getseasonend(this datetime datetime) { var time = datetime.addmonths((3 - ((datetime.month - 1) % 3) - 1)); return datetime.parse(time.addmonths(1).adddays(-time.addmonths(1).day + 1).adddays(-1).tostring("yyyy/mm/dd 23:59:59")); } /// /// 獲取本年開始時(shí)間 /// /// /// public static datetime getyearstart(this datetime datetime) { return datetime.parse(datetime.adddays(-datetime.dayofyear + 1).tostring("yyyy/mm/dd 00:00:00")); } /// /// 獲取本年結(jié)束時(shí)間 /// /// /// public static datetime getyearend(this datetime datetime) { var time2 = datetime.addyears(1); return datetime.parse(time2.adddays(-time2.dayofyear).tostring("yyyy/mm/dd 23:59:59")); } /// /// 北京時(shí)間轉(zhuǎn)換成unix時(shí)間戳(10位/秒) /// /// /// public static long beijingtimetounixtimestamp10(this datetime datetime) { return (long)(datetime - new datetime(1970, 1, 1, 8, 0, 0)).totalseconds; } /// /// 格林威治時(shí)間轉(zhuǎn)換成unix時(shí)間戳(10位/秒) /// /// /// public static long utctimetounixtimestamp10(this datetime datetime) { return (long)(datetime - new datetime(1970, 1, 1, 0, 0, 0)).totalseconds; } /// /// 北京時(shí)間轉(zhuǎn)換成unix時(shí)間戳(13位/毫秒) /// /// /// public static long beijingtimetounixtimestamp13(this datetime datetime) { return (long)(datetime - new datetime(1970, 1, 1, 8, 0, 0)).totalmilliseconds; } /// /// 格林威治時(shí)間轉(zhuǎn)換成unix時(shí)間戳(13位/毫秒) /// /// /// public static long utctimetounixtimestamp13(this datetime datetime) { return (long)(datetime - new datetime(1970, 1, 1, 0, 0, 0)).totalmilliseconds; } /// /// 10位unix時(shí)間戳轉(zhuǎn)換成北京時(shí)間 /// /// /// public static datetime unixtimestamp10tobeijingtime(this long unixtimestamp) { return new datetime(1970, 1, 1, 8, 0, 0).addseconds(unixtimestamp); } /// /// 10位unix時(shí)間戳轉(zhuǎn)換成格林威治 /// /// /// public static datetime unixtimestamp10toutctime(this long unixtimestamp) { return new datetime(1970, 1, 1, 0, 0, 0).addseconds(unixtimestamp); } /// /// 13位unix時(shí)間戳轉(zhuǎn)換成北京時(shí)間 /// /// /// public static datetime unixtimestamp13tobeijingtime(this long unixtimestamp) { return new datetime(1970, 1, 1, 8, 0, 0).addmilliseconds(unixtimestamp); } /// /// 13位unix時(shí)間戳轉(zhuǎn)換成格林威治 /// /// /// public static datetime unixtimestamp13toutctime(this long unixtimestamp) { return new datetime(1970, 1, 1, 0, 0, 0).addmilliseconds(unixtimestamp); } /// /// 當(dāng)前日期所在月份第一個(gè)指定星期幾的日期 /// /// 給定日期 /// 星期幾 /// 所對應(yīng)的日期 public static datetime getfirstweekdayofmonth(this datetime date, dayofweek dayofweek) { var dt = date.getmonthstart(); while (dt.dayofweek != dayofweek) dt = dt.adddays(1); return dt; } /// /// 當(dāng)前日期所在月份最后1個(gè)指定星期幾的日期 /// /// 給定日期 /// 星期幾 /// 所對應(yīng)的日期 public static datetime getlastweekdayofmonth(this datetime date, dayofweek dayofweek) { var dt = date.getmonthend(); while (dt.dayofweek != dayofweek) dt = dt.adddays(-1); return dt; } /// /// 判斷是否比指定之間早 /// /// /// /// public static bool isbefore(this datetime date, datetime other) { return date < other; } /// /// 判斷是否比指定時(shí)間晚 /// /// /// /// public static bool isafter(this datetime date, datetime other) { return date > other; } /// /// 給定日期所在月份共有多少天 /// /// /// public static int getcountdaysofmonth(this datetime date) { return date.getmonthend().day; } /// /// 當(dāng)前日期與給定日期是否是同一天 /// /// 當(dāng)前日期 /// 給定日期 /// public static bool isdateequal(this datetime date, datetime datetocompare) { return date.date == datetocompare.date; } /// /// 是否是周未 /// /// /// public static bool isweekend(this datetime date) { return date.dayofweek == dayofweek.saturday || date.dayofweek == dayofweek.sunday; } /// /// 是否是工作日 /// /// /// public static bool isweekday(this datetime date) { return !date.isweekend(); } /// /// 判斷是否為今天 /// /// /// public static bool istoday(this datetime date) { return date.date == datetime.now.date; } /// /// 判定公歷閏年遵循的一般規(guī)律為:四年一閏,百年不閏,四百年再閏。 /// 公歷閏年的精確計(jì)算方法:(按一回歸年365天5小時(shí)48分45.5秒) /// 普通年能被4整除而不能被100整除的為閏年。 (如2004年就是閏年,1900年不是閏年) /// 世紀(jì)年能被400整除而不能被3200整除的為閏年。 (如2000年是閏年,3200年不是閏年) /// 對于數(shù)值很大的年份能整除3200,但同時(shí)又能整除172800則又是閏年。(如172800年是閏年,86400年不是閏年) /// 公元前閏年規(guī)則如下: /// 非整百年:年數(shù)除4余數(shù)為1是閏年,即公元前1、5、9……年; /// 整百年:年數(shù)除400余數(shù)為1是閏年,年數(shù)除3200余數(shù)為1,不是閏年,年數(shù)除172800余1又為閏年,即公元前401、801……年。 /// /// /// public static bool isleap(this datetime datetime) { var year = datetime.year; if ((year % 400 == 0 && year % 3200 != 0) || (year % 4 == 0 && year % 100 != 0) || (year % 3200 == 0 && year % 172800 == 0)) return true; else return false; } /// /// 獲取當(dāng)前年天數(shù) /// /// /// public static int getdaysbyyear(this datetime datetime) { return (new datetime(datetime.year + 1, 1, 1) - new datetime(datetime.year, 1, 1)).days; } /// /// 獲取當(dāng)前年天數(shù) /// /// /// public static int getweekcountbyyear(this datetime datetime) { //找到今年的第一天是周幾 int firstweekend = convert.toint32(datetime.parse(datetime.year + "-1-1").dayofweek); //獲取第一周的差額,如果是周日,則firstweekend為0,第一周也就是從周天開始的。 int weekday = firstweekend == 0 ? 1 : (7 - firstweekend + 1); //獲取今天是一年當(dāng)中的第幾天 int currentday = datetime.dayofyear; //(今天 減去 第一周周末)/7 等于 距第一周有多少周 再加上第一周的1 就是今天是今年的第幾周了 // 剛好考慮了惟一的特殊情況就是,今天剛好在第一周內(nèi),那么距第一周就是0 再加上第一周的1 最后還是1 int current_week = convert.toint32(math.ceiling((currentday - weekday) / 7.0)) + 1; return current_week; } } }