std::chrono::high_resolution_clock
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <chrono> 中定义
|
||
class high_resolution_clock; |
(C++11 起) | |
类
std::chrono::high_resolution_clock
代表的剔期用最小的系统上可用的时钟。它可能是一个别名std::chrono::system_clock或std::chrono::steady_clock,或三分之一,独立的时钟.原文:
Class
std::chrono::high_resolution_clock
represents the clock with the smallest tick period available on the system. It may be an alias of std::chrono::system_clock or std::chrono::steady_clock, or a third, independent clock.std::chrono::high_resolution_clock
满足的要求TrivialClock
. 原文:
std::chrono::high_resolution_clock
meets the requirements of TrivialClock
. 目录 |
[编辑] 会员类型
会员类型
|
Definition |
rep
|
算术类型代表时钟的时间的刻度数
原文: arithmetic type representing the number of ticks in the clock's duration |
period
|
一个std::ratio类型的滴答的时钟周期,以秒为单位
原文: a std::ratio type representing the tick period of the clock, in seconds |
duration
|
std::chrono::duration<rep, period> |
time_point
|
std::chrono::time_point<std::chrono::steady_clock> |
[编辑] 会员常数
bool is_steady [静态的]</div></div>
|
true,如果刻度之间的时间是恒定的,并调用now的返回值是单调递增的 原文: true if the time between ticks is constant and calls to now return values that increase monotonically (公共静态成员常量) |
[编辑] 成员函数
[静态的]</div></div>
|
返回一个std::chrono::time_point代表时钟的当前值 原文: returns a std::chrono::time_point representing the current value of the clock (公共静态成员函数) |
[编辑] 另请参阅
(C++11) |
从全系统的实时时钟,挂钟时间 原文: wall clock time from the system-wide realtime clock (类) |
(C++11) |
单调时钟将永远不会被调整 原文: monotonic clock that will never be adjusted (类) |