1、datetime 數字型
system.datetime currenttime=new system.datetime();
1.1 取當前年月日時分秒
currenttime=system.datetime.now;
1.2 取當前年
int 年=currenttime.year;
1.3 取當前月
int 月=currenttime.month;
1.4 取當前日
int 日=currenttime.day;
1.5 取當前時
int 時=currenttime.hour;
1.6 取當前分
int 分=currenttime.minute;
1.7 取當前秒
int 秒=currenttime.second;
1.8 取當前毫秒
int 毫秒=currenttime.millisecond;
(變數可用中文)
1.9 取中文日期顯示——年月日時分
string stry=currenttime.tostring("f"); //不顯示秒
1.10 取中文日期顯示_年月
string strym=currenttime.tostring("y");
1.11 取中文日期顯示_月日
string strmd=currenttime.tostring("m");
1.12 取中文年月日
string strymd=currenttime.tostring("d");
1.13 取當前時分,格式為:14:24
string strt=curr
C語言獲取毫秒時間
int main getsystemtime ttime printf time u u u u u u u n currenttime.wyear,currenttime.wmonth,currenttime.wday,currenttime.whour,currenttime.wminute,c...
c獲取當前系統時間 C 日期 時間
c 標準庫沒有提供所謂的日期型別。c 繼承了 c 語言用於日期和時間操作的結構和函式。為了使用日期和時間相關的函式和結構,需要在 c 程式中引用 標頭檔案。有四個與時間相關的型別 clock t time t size t和tm。型別 clock t size t 和 time t 能夠把系統時間和...
C語言獲取系統當前時間
c語言獲取系統當前時間 time t 時間型別 struct tm 時間結構 time now 函式獲取當前時間距1970年1月1日的秒數,以秒計數單位。localtime rawtime 轉為當地時間,tm 時間結構 比如獲取當前年份 int iyear 0 int sysyear 0 time ...