命名空间
变体
操作

timespec

来自 cppreference.com
< c‎ | chrono
定义在头文件 <time.h>
struct timespec;
(自 C11 起)

保存分解为秒和纳秒的间隔的结构。

内容

[编辑] 成员对象

time_t tv_sec 整秒(有效值为 >= 0)
/* 见下文 */ tv_nsec 纳秒(有效值为 [0, 999999999])

tv_nsec 的类型为 long

(直到 C23)

tv_nsec 的类型是实现定义的有符号整数类型,可以表示 [0, 999999999] 中的整数。

(自 C23 起)

tv_sectv_nsec 的声明顺序未指定。实现可能会向 struct timespec 添加其他成员。

[编辑] 说明

tv_nsec 的类型在某些平台上是 long long,这仅在 C23 之后才符合标准。

[编辑] 示例

#include <stdio.h>
#include <time.h>
#include <stdint.h>
 
int main(void)
{
    struct timespec ts;
    timespec_get(&ts, TIME_UTC);
    char buff[100];
    strftime(buff, sizeof buff, "%D %T", gmtime(&ts.tv_sec));
    printf("Current time: %s.%09ld UTC\n", buff, ts.tv_nsec);
    printf("Raw timespec.tv_sec: %jd\n", (intmax_t)ts.tv_sec);
    printf("Raw timespec.tv_nsec: %09ld\n", ts.tv_nsec);
}

可能的输出

Current time: 04/04/24 14:45:17.885909786 UTC
Raw timespec.tv_sec: 1712241917
Raw timespec.tv_nsec: 885909786

[编辑] 参考资料

  • C17 标准(ISO/IEC 9899:2018)
  • 7.27.1/3 时间组件(p: 284)
  • C11 标准(ISO/IEC 9899:2011)
  • 7.27.1/3 时间组件(p: 388)

[编辑] 另请参阅

根据给定的时间基返回以秒和纳秒表示的日历时间
(函数) [编辑]
日历时间类型
(结构体)[编辑]
C++ 文档 针对 timespec