c 基礎知識(獲取系統當前時間)

2022-08-10 19:18:17 字數 973 閱讀 9378

ystem.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;

datetime dt = datetime.now;  

label1.text = dt.tostring();//2005-11-5 13:21:25  

label2.text = dt.tofiletime().tostring();//127756416859912816  

label3.text = dt.tofiletimeutc().tostring();//127756704859912816  

label4.text = dt.tolocaltime().tostring();//2005-11-5 21:21:25  

label5.text = dt.tolongdatestring().tostring();//2023年11月5日  

label6.text = dt.tolongtimestring().tostring()

string str = datetime.now.toshortdatestring().tostring();//獲取短日期字串表現形式

c 獲取當前時間 毫秒 C 獲取系統時間

1 datetime 數字型 system.datetime currenttime new system.datetime 1.1 取當前年月日時分秒 currenttime system.datetime.now 1.2 取當前年 int 年 currenttime.year 1.3 取當前月 ...

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 ...