首页 > 代码库 > linux —— C编程

linux —— C编程

目录:1、获取毫秒时间

 


 

1、获取毫秒时间

  1. #include <stdio.h>
  2. #include <sys/time.h>
  3.  
  4. int main() {
  5.     struct timeval start, end;
  6.     gettimeofday( &start, NULL );
  7.     sleep(3);
  8.     gettimeofday( &end, NULL );
  9.     int timeuse = 1000000 * ( end.tv_sec - start.tv_sec ) + end.tv_usec - start.tv_usec;
  10.     printf("time: %d us\n", timeuse);
  11.     return 0;
  12. }

参考:博客

linux —— C编程