std::chrono::duration::max
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
static constexpr duration max(); |
||
Returns a duration with the largest possible value.
If the representation rep
of the duration requires some other implementation to return a maximum-length duration, std::chrono::duration_values can be specialized to return the desired value.
[编辑] 参数
(无)
[编辑] 返回值
返回std::chrono::duration(std::chrono::duration_values<rep>::max())
原文:
returns std::chrono::duration(std::chrono::duration_values<rep>::max())
[编辑] 另请参阅
[静态的]</div></div>
|
returns the special duration value zero (公共静态成员函数) |
[静态的]</div></div>
|
返回的时间值最小 原文: returns the special duration value min (公共静态成员函数) |