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

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

  • 上一篇: 内链接sql
  • 下一篇: l298npwm调速程序
  • 版权声明


    相关文章:

  • 内链接sql2024-11-23 07:01:04
  • pytorch dataloader读取数据2024-11-23 07:01:04
  • springboot的作用2024-11-23 07:01:04
  • c语言结构体初始化的四种方法2024-11-23 07:01:04
  • xmind破解器2024-11-23 07:01:04
  • l298npwm调速程序2024-11-23 07:01:04
  • 统一登录器网关未开放2024-11-23 07:01:04
  • leveldb教程2024-11-23 07:01:04
  • 二阶低通滤波器电路2024-11-23 07:01:04
  • jdk8 hashmap的改进2024-11-23 07:01:04