std::chrono::steady_clock

来自cppreference.com
< cpp‎ | chrono

 
 
实用工具库
类型的支持 (basic types, RTTI, type traits)
动态内存管理
错误处理
程序实用工具
可变参数函数
日期和时间
函数对象
initializer_list(C++11)
bitset
hash(C++11)
关系运算符
原文:
Relational operators
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
rel_ops::operator!=
rel_ops::operator>
rel_ops::operator<=
rel_ops::operator>=
双和元组
原文:
Pairs and tuples
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
pair
tuple(C++11)
piecewise_construct_t(C++11)
piecewise_construct(C++11)
掉期,远期和移动
原文:
Swap, forward and move
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
swap
forward(C++11)
move(C++11)
move_if_noexcept(C++11)
declval(C++11)
 
日期和时间工具
time_point(C++11)
duration(C++11)
system_clock(C++11)
steady_clock(C++11)
high_resolution_clock(C++11)
C风格的日期和时间
 
std::chrono::steady_clock
成员函数
原文:
Member functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
steady_clock::now
 
在头文件 <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.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
std::chrono::steady_clock满足的要求TrivialClock.
原文:
std::chrono::steady_clock meets the requirements of TrivialClock.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

[编辑] 会员类型

会员类型
原文:
Member type
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
Definition
rep
算术类型代表时钟的时间的刻度数
原文:
arithmetic type representing the number of ticks in the clock's duration
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
period
一个std::ratio类型的滴答的时钟周期,以秒为单位
原文:
a std::ratio type representing the tick period of the clock, in seconds
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
duration std::chrono::duration<rep, period>
time_point std::chrono::time_point<std::chrono::steady_clock>

[编辑] 会员常数

bool is_steady
[静态的]</div></div>
稳定的时钟标志,总是true
原文:
steady clock flag, always true
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(公共静态成员常量)

[编辑] 成员函数

[静态的]</div></div>
返回一个time_point代表时钟的当前值
原文:
returns a time_point representing the current value of the clock
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(公共静态成员函数)

[编辑] 另请参阅

(C++11)
从全系统的实时时钟,挂钟时间
原文:
wall clock time from the system-wide realtime clock
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(类)
的时钟用最短的剔期
原文:
the clock with the shortest tick period available
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(类)

来自“http://zh.cppreference.com/mwiki/index.php?title=cpp/chrono/steady_clock&oldid=30275