1.使用C语言进行计时
在用户空间中可以使用C语言函数gettimeofday 得到时间,它的调用格式是:
#include <sys/time.h>
int gettimeofday(struct timeval *tv, struct timezone *tz);
int settimeofday(const struct timeval *tv , const struct timezone *tz);
结构timeval的定义为:
strut timeval {long tv_sec; /* 秒数 */long tv_usec; /* 微秒数 */};
可以看出,使用这种方式计时,精度可达微秒,也就是10-6秒。进行计时的时候,我们需要前后调用两次gettimeofday,然后计算中间的差值:
gettimeofday( &start, NULL );
foo();
gettimeofday( &end, NULL );
得到微秒: timeuse = 1000000 * ( end.tv_sec - start.tv_sec ) + end.tv_usec - start.tv_usec;
得到秒: timeuse /= 1000000;
2.在python中,得到微秒
begin = datetime.datetime.today()
end = datetime.datetime.today()
print end.microsecond
print begin.microsecond
td = end - begin
print 'create introduce: %f seconds'%((td.microseconds + 1.0 * (td.seconds + td.days * 24 * 3600) * 10**6) / 10**6)