std::common_type(std::chrono::duration)
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
template <class Rep1, class Period1, class Rep2, class Period2> struct common_type<std::chrono::duration<Rep1, Period1>, |
(C++11 起) | |
公开的类型名为
type
,这是常见的类型的两个std::chrono::durations.原文:
Exposes the type named
type
, which is the common type of two std::chrono::durations.[编辑] 请注意
The period the resulting duration is the greatest common divisor of Period1
and Period2
.
[编辑] 示例
本章尚未完成 原因:暂无示例 |