Chinaunix首页 | 论坛 | 博客
  • 博客访问: 16469
  • 博文数量: 4
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 10
  • 用 户 组: 普通用户
  • 注册时间: 2014-10-07 14:07
个人简介

liunx太有意思了!

文章分类
文章存档

2015年(4)

我的朋友

分类: C/C++

2015-03-24 09:55:29

一、struct timeval结构体
struct timeval结构体在time.h中的定义为:
  1. struct timeval
  2. {
  3. __time_t tv_sec;        /* Seconds. */
  4. __suseconds_t tv_usec;  /* Microseconds. */
  5. };
其中,tv_sec为Epoch到创建struct timeval时的秒数,tv_usec为微秒数,即秒后面的零头。比如当前我写博文时的tv_sec为1244770435,tv_usec为442388,即当前时间距Epoch时间1244770435秒,442388微秒。需要注意的是,因为循环过程,新建结构体变量等过程需消耗部分时间,我们作下面的运算时会得到如下结果:
  1. #include <sys/time.h>
  2. #include <stdio.h>
  3.   
  4. int
  5. main(void)
  6. {
  7.         int i;
  8.         struct timeval tv;

  9.         for(i = 0; i < 4; i++){
  10.                 gettimeofday(&tv, NULL);
  11.                 printf("%d\t%d\n", tv.tv_usec, tv.tv_sec);
  12.                 sleep(1);
  13.         }

  14.         return 0;
  15. }
  1. 329612 1314851429
  2. 329782 1314851430
  3. 329911 1314851431
  4. 330036 1314851432
前面为微秒数,后面为秒数,可以看出,在这个简单运算中,只能精确到小数点后面一到两位,或者可以看出,每进行一次循环,均需花费0.005秒的时间,用这个程序来作计时器显然是不行的,除非精确计算产生的代码消耗时间。

二、gettimeofday()函数
原型:
  1. /* Get the current time of day and timezone information,
  2.    putting it into *TV and *TZ. If TZ is NULL, *TZ is not filled.
  3.    Returns 0 on success, -1 on errors.
  4.    NOTE: This form of timezone information is obsolete.
  5.    Use the functions and variables declared in <time.h> instead. */
  6. extern int gettimeofday (struct timeval *__restrict __tv,
  7.                          __timezone_ptr_t __tz) __THROW __nonnull ((1));
gettimeofday()功能是得到当前时间和时区,分别写到tv和tz中,如果tz为NULL则不向tz写入。
阅读(1036) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~