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

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;
}

版权声明


相关文章:

  • pytorch dataloader读取数据2024-11-23 07:01:04
  • uint8_t char2024-11-23 07:01:04
  • java虚拟机栈是线程隔离的吗2024-11-23 07:01:04
  • c中malloc函数的用法2024-11-23 07:01:04
  • ir2104驱动电路原理2024-11-23 07:01:04
  • 统一登录器网关未开放2024-11-23 07:01:04
  • 二阶低通滤波器电路2024-11-23 07:01:04
  • jdk8 hashmap的改进2024-11-23 07:01:04
  • 类的静态成员变量怎么赋值2024-11-23 07:01:04
  • bind9配置详解2024-11-23 07:01:04