[C++]C++中的時間

类别:编程语言 点击:0 评论:0 推荐:

C++中的時間

 

#include <stdio.h>

#include <tchar.h>

#include <string>

#include <iostream>

#include <time.h>

#include <conio.h>

#include <dos.h>

 

using namespace std;

 

int _tmain(int argc, _TCHAR* argv[])

{

     clock_t start,end;

     //宏定義:__DATE__、__TIME__、__FILE__、__LINE__,表示在代碼編譯時的信息。

     string dateCode = __DATE__;      //文件編譯時的日期。

     string timeCode = __TIME__;      //文件編譯時的時間。

 

     cout<<"Creat the software of date:"<<dateCode<<endl;

     cout<<"Creat the software of time:"<<timeCode<<endl;

 

     start = clock();   //程序運行到這裡開始統計CPU運行時間,此時值為0。

     _getch(); //按下任意一鍵時程序繼續執行。

     end = clock();         //按下鍵後統計時間。

 

     cout<<"Press any key to continue"<<endl;

     //由於end和start為毫秒,故除以CLK_TCK轉為秒值。

     cout<<"Program run time: "<<(end - start)/CLK_TCK<<" Sceond."<<endl;

     return 0;

}

 

可以用clock來統計程序運行的時間長短。

time返回从1970年1月1日0时到现在的秒数,即系统时间。

clock是自进程启动后此进程使用cpu的总毫秒数,常用来测试任务执行的速度。

本文地址:http://com.8s8s.com/it/it27219.htm