MFC獲取系統時間

2021-06-04 18:01:16 字數 910 閱讀 9921

1.使用ctime類

cstring str; //獲取系統時間

ctime tm; tm=ctime::getcurrenttime();

str=tm.format("現在時間是%y年%m月%d日 %x"); messagebox(str,null,mb_ok);

2: 得到系統時間日期(使用getlocaltime)

systemtime st;

cstring strdate,strtime;

getlocaltime(&st);

strdate.format("%4d-%2d-%2d",st.wyear,st.wmonth,st.wday);

strtime.format("%2d:%2d:%2d",st.whour,st.wminute,st.wsecond);

3.使用gettickcount//獲取程式執行時間

long t1=gettickcount();//程式段開始前取得系統執行時間(ms)

sleep(500); long t2=gettickcount();//程式段結束後取得系統執行時間(ms)

str.format("time:%dms",t2-t1);//前後之差即 程式執行時間

afxmessagebox(str);//獲取系統執行時間

long t=gettickcount();

cstring str,str1;

str1.format("系統已執行 %d時",t/3600000);

str=str1; t%=3600000;

str1.format("%d分",t/60000);

str+=str1; t%=60000;

str1.format("%d秒",t/1000);

str+=str1; afxmessagebox(str);

MFC獲取系統時間

mfc中呼叫電腦系統時間函式,首先建立乙個對話方塊,新增乙個按鈕,為該按鈕新增如下函式 ctime t ctime getcurrenttime int nyear t.getyear int nmonth t.getmonth int nday t.getday int nhour t.getho...

mfc獲取系統時間

1.使用ctime類 cstring str 獲取系統時間 ctime tm tm ctime getcurrenttime str tm.format 現在時間是 y年 m月 d日 x messagebox str,null,mb ok 2 得到系統時間日期 使用getlocaltime syst...

MFC獲取系統當前時間

1.使用ctime類 cstring str 獲取系統時間 ctime tm tm ctime getcurrenttime str tm.format 現在時間是 y年 m月 d日 x messagebox str,null,mb ok 2 得到系統時間日期 使用getlocaltime syst...