标准库 <time.h> 提供了秒级别的精度
如果想精确到毫秒,微妙的精度,需要系统API的帮助
windows:
QueryPerformanceCounter( &counter )
linux :
<sys/time.h>
<sys/timeb.h>
struct timespec tp;
struct timeval tv;
标准库 <time.h> 提供了秒级别的精度
如果想精确到毫秒,微妙的精度,需要系统API的帮助
windows:
QueryPerformanceCounter( &counter )
linux :
<sys/time.h>
<sys/timeb.h>
struct timespec tp;
struct timeval tv;