std::chrono::system_clock::to_time_t
来自cppreference.com
< cpp | chrono | system clock
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
static std::time_t to_time_t( const std::chrono::time_point& t ); |
(C++11 起) | |
转换到
t
类型的std::time_t. std::time_t具有较低的精度,这是实现定义的值是否是圆形或截断.
原文:
If std::time_t has lower precision, it is implementation-defined whether the value is rounded or truncated.
目录 |
[编辑] 参数
t | - | 要转换的时间点
|
[编辑] 返回值
一个std::time_t值,表示
t
.[编辑] 例外
[编辑] 另请参阅
[静态的]</div></div>
|
转换std::time_t到系统时钟的时间点 原文: converts std::time_t to a system clock time point (公共静态成员函数) |