std::chrono::steady_clock
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <chrono> 中定义
|
||
class steady_clock; |
(C++11 起) | |
std::chrono::steady_clock
类代表一个单调时钟。该时钟的时间点不能减少,作为物理的时间向前移动。这个时钟是不涉及到墙上时钟时间,和用于测量的时间间隔最好是适合.原文:
Class
std::chrono::steady_clock
represents a monotonic clock. The time points of this clock cannot decrease as physical time moves forward. This clock is not related to wall clock time, and is best suitable for measuring intervals.std::chrono::steady_clock
满足的要求TrivialClock
. 原文:
std::chrono::steady_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 (公共静态成员常量) |
[编辑] 成员函数
[静态的]</div></div>
|
返回一个time_point代表时钟的当前值 原文: returns a time_point representing the current value of the clock (公共静态成员函数) |
[编辑] 另请参阅
(C++11) |
从全系统的实时时钟,挂钟时间 原文: wall clock time from the system-wide realtime clock (类) |
(C++11) |
的时钟用最短的剔期 原文: the clock with the shortest tick period available (类) |