C++ 时间函数概述

太多的不做介绍了。。毕竟博主学识有限。。( ̄▽ ̄)~*

关键要会运用常见类型;

本文只初略概述

1. unsigned long int time(& time_t);

#include 
#include 
#include 
using namespace std;
const int c=CLOCKS_PER_SEC;
int main()
{
	time_t t1,t2;//只可以精确到秒 
	t1=time(NULL);//time(&t1)也可以 
	Sleep(1500);//延时函数在头文件 注:在c++里面也是.h。。。 
	t2=time(NULL);
	cout<

 输出:

1

2.clock_t clock(void);

#include 
#include 
#include 
using namespace std;
const int c=CLOCKS_PER_SEC;//CLK_TCK也可
int main()
{
	clock_t t1,t2;
	t1=clock();
	Sleep(1500);
	t2=clock();
	cout<<(double)(t2-t1)/c<

输出

1.501

你可能感兴趣的:(IT)