千家信息网

库函数调用之时间的显示、计算、应用

发表于:2025-01-24 作者:千家信息网编辑
千家信息网最后更新 2025年01月24日,时间类型UTC世界时间日历时间从1970年1月1日#includestruct tm *gmtime(const time_t*timep)功能;将日历时间转化格林威志时间;struct tm{int
千家信息网最后更新 2025年01月24日库函数调用之时间的显示、计算、应用

时间类型
UTC世界时间
日历时间
从1970年1月1日
#include
struct tm *gmtime(const time_t*timep)
功能;将日历时间转化格林威志时间;
struct tm{

int tm_sec;
int tm_min;
int tm_hour;
int tm_mday;
int tm_mon;
int tm_year; //tm_year +1900=哪一年
int tm_wday;
int tm_yday;
int tm_isdst;

}
#include
#include
int main(void){
struct tm *local;
time_t t;
t=time(NULL);
local=localtime(&t);
printf("local hour time:%d\n",loccal->tm_hour);
local=gmtime(&t);
printf("utc hour is :%d/n",local->tm_hour);return 0;

}

获取时间
int gettimeofday(struct timeval *tv,struct timezone tz*)
功能;获取从今日凌晨到现在的时差

struct timeval{


int tv_sec; //miao
int tv_usec;//wei miao


};

#include
#include
#include
#include

/************时间函数,延迟函数****************/
void function()
{
unsigned int i,j;
double y;
for(i=0;i<1000;i++)
for(j=0;j<1000;j++)
j++;

}

/*******此函数可以计算出一个函数运行的时间********/
main()
{
struct timeval tpstart ,tpend;
float timesuel
gettimeofday(&tpstat,NULL); // time of start
function();
gettimeofday(&tpend,NULL); //count time end ;
/*count time*/

timeuse=1000000*(tpend.tv_sec-tpstart.tv_set);
printf("used time ;\n",timeuse);
exit(0);
}


0