std::chrono::file_clock::to_utc, std::chrono::file_clock::from_utc
来自 cppreference.com
< cpp | chrono | file clock
template< class Duration > static std::chrono::utc_time</* 参见下文 */> |
(1) | (自 C++20 起) (可选) |
template< class Duration > static std::chrono::file_time</* 参见下文 */> |
(2) | (自 C++20 起) (可选) |
1) 将
file_time
t 转换为表示同一时间的 utc_time
。2) 将
utc_time
t 转换为表示同一时间的 file_time
。返回类型的持续时间以未指定的方式从 Duration
计算得出。
这些函数模板是可选的:实现可以选择提供 to_sys
和 from_sys
。
内容 |
[编辑] 返回值
1) 表示与参数相同时间的
utc_time
。2) 表示与参数相同时间的
file_time
。[编辑] 注释
用户代码通常应该使用 std::chrono::clock_cast,它提供了在时钟之间转换时间点的通用接口,而不是直接调用这些函数。
[编辑] 示例
本节内容不完整 原因:没有示例 |
[编辑] 另请参见
[static] (可选) |
在 file_time 和 sys_time 之间转换(公共静态成员函数) |
(C++20) |
将一个时钟的时间点转换为另一个时钟的时间点 (函数模板) |