当前位置:网站首页 > 技术博客 > 正文

struct timeval结构体



网上很多人写到,timeval结构解释错误

*

DESCRIPTION
    The functions gettimeofday and settimeofday can get and set the time as
    well as a timezone. The tv argument is a timeval struct, as specified
    in <sys/time.h>:

    struct timeval {
          time_t       tv_sec;     /* seconds */
          suseconds_t   tv_usec; /* microseconds */
    };

我很无语,只能说写这话的人英语很水,microsecond 是微秒的意思,简写为usec

毫秒的英语单词是millisecond,简写为msec

#include <stdio.h>
#include <sys/time.h>
#include <time.h>

    struct timeval tv;
    while(1)
{
          gettimeofday(&tv,NULL);
          printf("time ∅n",tv.tv_sec,tv.tv_usec);
          sleep(2);
   }
    return 0;
}

  • 上一篇: c assert函数
  • 下一篇: button.css
  • 版权声明


    相关文章:

  • c assert函数2024-11-23 07:01:04
  • 内链接sql2024-11-23 07:01:04
  • pytorch dataloader读取数据2024-11-23 07:01:04
  • 命令模式实例2024-11-23 07:01:04
  • 2019永久领域加密2024-11-23 07:01:04
  • button.css2024-11-23 07:01:04
  • l298npwm调速程序2024-11-23 07:01:04
  • mock测试入门2024-11-23 07:01:04
  • 积分运算电路公式推导2024-11-23 07:01:04
  • 火车头采集器采集规则2024-11-23 07:01:04