linux下测试程序运行的时间
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
所处的环境,决定了将来成长的高度。所以当所处环境不是太好时,你应该使自己成为这个环境最好的,然后去选择一个全新的环境。推荐一部电影《风雨哈佛路》,感人和励志的电影,没有什么能够阻挡你对美好世界的渴望,一定有一个世界,这个世界更美好,自由,阳光,追求。所以必须努力通向另外一个世界。
I will use my every potential to do that. I just always knew that I need to get out. I have to do it. I have no choice。以这句台词勉励自己。
上正文:
int gettimeofday(struct timeval tv,struct timezone *tz) 这个函数用于获取从今日凌晨到现在的时间差,常用于事件的耗时。
struct timeval
{
int tv_sec;
int tv_usec;
}
通过下面的一个简单的源程序,来了解如何运用的。
#include <time.h>
#include <stdio.h>
#include<sys/time.h>
int main(void)
{
struct timeval startTime,endTime;
float Timeuse;
int i,j;
gettimeofday(&startTime,NULL);
for(i =0;i <10;i++)
{
printf("Nice to see you\n");
for(j = 0;j <100; j++);
}
gettimeofday(&endTime,NULL);
Timeuse = 1000000*(endTime.tv_sec - startTime.tv_sec) + (endTime.tv_usec - startTime.tv_usec);
Timeuse /= 1000000;
printf("Timeuse = %f\n",Timeuse);
}
程序执行的结果:
另外的一种测试时间的方法是:在执行文件加time
还是这个程序:
对比两个时间,一个是Timeuse=0.000056s ,一个是0.001s,说明使用程序更精确一些。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)