1.使用CTime類
CString str; //獲取系統(tǒng)時(shí)間
CTime tm; tm=CTime::GetCurrentTime();
str=tm.Format("現(xiàn)在時(shí)間是%Y年%m月%d日 %X");
MessageBox(str,NULL,MB_OK); 2: 得到系統(tǒng)時(shí)間日期(使用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//獲取程序運(yùn)行時(shí)間
long t1=GetTickCount();//程序段開(kāi)始前取得系統(tǒng)運(yùn)行時(shí)間(ms)
Sleep(500); long t2=GetTickCount();//程序段結(jié)束后取得系統(tǒng)運(yùn)行時(shí)間(ms)
str.Format("time:%dms",t2-t1);//前后之差即 程序運(yùn)行時(shí)間
AfxMessageBox(str);//獲取系統(tǒng)運(yùn)行時(shí)間
long t=GetTickCount();
CString str,str1;
str1.Format("系統(tǒng)已運(yùn)行 %d時(shí)",t/3600000);
str=str1; t%=3600000;
str1.Format("%d分",t/60000);
str+=str1; t%=60000;
str1.Format("%d秒",t/1000);
str+=str1; AfxMessageBox(str);
本文轉(zhuǎn)自:http://www.cnblogs.com/bigbigtree/archive/2011/12/02/2272066.html
posted on 2013-08-22 17:36
王海光 閱讀(1579)
評(píng)論(0) 編輯 收藏 引用 所屬分類:
MFC