std::chrono::utc_clock::from_sys
来自 cppreference.com
template< class Duration > static std::chrono::utc_time<std::common_type_t<Duration, std::chrono::seconds>> |
(自 C++20) | |
将 sys_time
t 转换为表示相同时间点的 utc_time
u
。
u.time_since_epoch() - t.time_since_epoch() 等于在 t 和 1970 年 1 月 1 日之间插入的闰秒数。如果 t 是闰秒插入的确切日期,则该闰秒被计入插入。
[编辑] 返回值
一个 utc_time
,它表示与 t 相同的时间点。
[编辑] 另请参阅
[静态] |
将 utc_time 转换为 sys_time (公共静态成员函数) |
(C++20) |
将一个时钟的时间点转换为另一个时钟的时间点 (函数模板) |