std::chrono::utc_clock::to_sys
来自 cppreference.com
template< class Duration > static std::chrono::sys_time<std::common_type_t<Duration, std::chrono::seconds>> |
(自 C++20 起) | |
将 utc_time
t 转换为表示相同时间点的 sys_time
(如果可能)。
如果 t 表示闰秒插入期间的时间点,则返回闰秒插入之前的 sys_time
的最后一个可表示值。在所有其他情况下,utc_clock::from_sys(utc_clock::to_sys(t)) == t.
[编辑] 返回值
一个 sys_time
,表示与 t 相同的时间点,或者如果 t 表示闰秒插入期间的时间点,则返回闰秒插入之前的最后一个可表示值。
[编辑] 另请参阅
[静态] |
将 sys_time 转换为 utc_time (公共静态成员函数) |
(C++20) |
将一个时钟的时间点转换为另一个时钟的时间点 (函数模板) |