码迷,mamicode.com
首页 > 编程语言 > 详细

C++获取当前时间和计算程序运行时间的方法

时间:2015-04-16 17:25:19      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

C++获取当前时间和计算程序运行时间的方法 
获取当前时间: 
#include <iostream> 
#include <Windows.h>  

using namespace std;  

int main() { 
   	SYSTEMTIME sys;     
	GetLocalTime(&sys);   
	cout<<sys.wYear<<"年";     
	cout<<sys.wMonth<<"月";     
	cout<<sys.wDay<<"日";     
	cout<<sys.wHour<<"时";     
	cout<<sys.wMinute<<"分";     
	cout<<sys.wSecond<<"秒";     
	cout<<sys.wMilliseconds<<"毫秒"; 
	cout<<",星期"<<sys.wDayOfWeek<<endl;  
   	return 0;
} 
  
计算程序运行时间 方法一: 

#include <iostream> #include <time.h>//关键  
using namespace std;  
int main() { 
	clock_t start, finish;     
	double totalTime;  
    	start = clock();  
	//需要测试运行时间的代码段放在这  
	finish = clock();  
	totalTime = (double)(finish - start);   
	cout<<"花费"<<totalTime<<"毫秒"<<endl;  
	return 0;
} 
  
计算程序运行时间 方法二: 

#include <iostream> 
#include <Windows.h>	//关键  
using namespace std;  
int main() { 
	LONGLONG start, finish;  
	LONGLONG totalTime;  
	start = GetTickCount();  
	//需要测试运行时间的代码段放在这     
	finish = GetTickCount();  
	totalTime = finish - start; 
	cout<<"花费"<<totalTime<<"毫秒"<<endl;  
	return 0; 
} 

  

C++获取当前时间和计算程序运行时间的方法

标签:

原文地址:http://www.cnblogs.com/wushuaiyi/p/4432542.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!