#include <time.h>//ns差
struct timespec begin= {0, 0};
clock_gettime(CLOCK_REALTIME, &begin);struct timespec end= {0, 0};
clock_gettime(CLOCK_REALTIME, &end);int value = end.tv_nsec - begin.tv_nsec;//另一种us时间差
struct timeval tv1;
gettimeofday(&tv1, NULL);
struct timeval tv2;
gettimeofday(&tv2, NULL);
printf("耗时us:%lld\n",(long long int)(((tv2.tv_sec)*1000000 + tv2.tv_usec) - ((tv1.tv_sec)*1000000 + tv1.tv_usec)));
代码性能分析时,精确的时间统计计算,需要用到gettimeofday。
int gettimeofday(struct timeval*tv, struct timezone *tz);
struct timeval
{
long int tv_sec; // 秒数
long int tv_usec; // 微秒数
}
struct timezone
{
int tz_minuteswest;/*格林威治时间往西方的时差*/
int tz_dsttime;/*DST 时间的修正方式*/
}