首页 > 编程 > C++ > 正文

C语言时间处理实例分享

2020-05-23 14:18:28
字体:
来源:转载
供稿:网友

这篇文章主要介绍了C语言时间处理实例分享的相关资料,需要的朋友可以参考下

一、简介

时间处理在编程中经常遇到,包括程序的运行时间和显示时间等。在标准C中, 日期和时间的处理包含在 time.h 的头文件中,需要使用日期和时间相关的类型的函数的话, 需要导入time.h.

二、实例

1、计算时差

 

 
  1. #include <stdio.h>  
  2. #include <sys/time.h>  
  3. #include <unistd.h>  
  4.  
  5. int main() 
  6. struct timeval start, end; 
  7. unsigned long spend_time; 
  8.  
  9. gettimeofday( &start, NULL ); 
  10. printf("start : %d.%d/n", start.tv_sec, start.tv_usec); 
  11. sleep(1); 
  12. gettimeofday( &end, NULL ); 
  13. printf("end : %d.%d/n", end.tv_sec, end.tv_usec); 
  14.  
  15. //微秒时差 
  16. spend_time=1000000*(end.tv_sec-start.tv_sec)+(end.tv_usec-start.tv_usec); 
  17. printf("%ld/n",spend_time); 
  18.  
  19. return 0; 

编译

gcc -g -o time_diff time_diff.c

运行

C语言时间处理实例分享

以上所述就是本文的全部内容了,希望大家能够喜欢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表