MFC中计算程序系统运行时间.doc

  1. 1、本文档共6页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
VC/MFC中计算程序/系统运行时间 (2011-04-28 00:16:15) 转载 转载。来自/skyseraph/archive/2010/12/30/1922341.html 法一 利用GetTickCount函数? 获取程序运行时间? 。。。 long t1=GetTickCount();//程序段开始前取得系统运行时间(ms) 。。。。。。//to do sth long t2=GetTickCount();//程序段结束后取得系统运行时间(ms) coutt2-t1endl;//前后之差即程序运行时间 。。。 ? ? 获取系统运行时间 ? 代码 CString str; //获取程序运行时间 long t1=GetTickCount();//程序段开始前取得系统运行时间(ms) //Sleep(500); //AfxMessageBox(do something...); 。。。。。。//to do sth long t2=GetTickCount();//程序段结束后取得系统运行时间(ms) str.Format(time:%dms,t2-t1);//前后之差即程序运行时间 AfxMessageBox(str); ? ???? 法二 利用C/C++计时函数 ?获取程序运行时间 ? 代码 #include time.h 。。。 clock_t start, finish; start = clock(); 。。。。。。//to do sth finish = clock(); //cout(double)(finish-start)/CLOCKS_PER_SEC secondsendl; printf(%f seconds\n,(double)(finish-start)/CLOCKS_PER_SEC); 。。。 ? ? 函数/参数说明 clock() C/C++计时函数,与其相关的数据类型是clock_t 返回:从此程序进程开启到程序中调用clock()函数之间CPU计时单元数,MSDN中称挂钟时间(wal-clock) clock_t 用来保存时间的数据类型,在time.h中定义:typedef ? long ? clock_t; ?为长整型 CLOCKS_PER_SEC 用来表示一秒钟会有多少个时钟计时单元,在time.h中定义:#define CLOCKS_PER_SEC ((clock_t)1000) ? ? 获取系统运行的时间 ? 代码 CString str,str1; //获取系统运行时间 long t=GetTickCount(); 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); ? ? ? 法三? 利用CTime类 获取系统时间 ? CString str; //获取系统时间 CTime tm; tm=CTime::GetCurrentTime(); str=tm.Format(现在时间是%Y年%m月%d日 %X); AfxMessageBox(str); ? ? ? 法四? 利用GetLocalTime类 获取系统时间 ? 代码 SYSTEMTIME st; CString strDate,strTime; GetLocalTime(st); strDate.Format(M----,st.wYear,st.wMonth,st.wDay); strTime.Format(-:-:-,st.wHour,st.wMinute,st.wSecond); AfxMessageBox(strDate); AfxMessageBox(strTime); ? ?

文档评论(0)

gangshou + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档