std::timespec
来自 cppreference.com
定义在头文件中 <ctime> |
||
struct timespec; |
(自 C++17 起) | |
包含分解成秒和纳秒的间隔的结构。
内容 |
[编辑] 成员对象
std::time_t tv_sec |
整秒 – >= 0 |
long tv_nsec |
纳秒 – [ 0, 999999999] |
tv_sec
和 tv_nsec
的声明顺序未指定。实现可能会在 timespec
中添加其他数据成员。
[编辑] 注释
tv_nsec
的类型在某些平台上是 long long,这在 C++ 中目前是不符合标准的,但在 C 中自 C23 起允许。
[编辑] 示例
运行此代码
#include <ctime> #include <iostream> int main() { std::timespec ts; std::timespec_get(&ts, TIME_UTC); char buff[0x80]; std::strftime(buff, sizeof buff, "%D %T", std::gmtime(&ts.tv_sec)); // auto [sec, nsec] = ts; // UB: structured bindings should not be used because the // declaration order and data member list are unspecified std::cout << "Current time: " << buff << " (UTC)\n" << "Raw timespec.tv_sec: " << ts.tv_sec << '\n' << "Raw timespec.tv_nsec: " << ts.tv_nsec << '\n'; }
可能的输出
Current time: 04/06/23 12:03:31 (UTC) Raw timespec.tv_sec: 1680782611 Raw timespec.tv_nsec: 678437213
[编辑] 另请参阅
(C++17) |
根据给定的时间基,以秒和纳秒为单位返回日历时间 (函数) |
日历时间类型 (类) | |
C 文档 for timespec
|