std::chrono::system_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::system_clock
成员函数
原文:
Member functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
system_clock::now
system_clock::to_time_t
system_clock::from_time_t
 
在头文件 <chrono> 中定义
class system_clock;
(C++11 起)
std::chrono::system_clock类代表了全系统的实时挂钟.....
原文:
Class std::chrono::system_clock represents the system-wide real time wall clock.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
它可能不是单调的:在大多数系统中,可以随时调整系统时间。这是唯一的C ​​+ +的时钟,有能力映射C风格的时间的时间点,因此,要显示.
原文:
It may not be monotonic: on most systems, the system time can be adjusted at any moment. It is the only C++ clock that has the ability to map its time points to C-style time, and, therefore, to be displayed.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
std::chrono::system_clock满足的要求TrivialClock.
原文:
std::chrono::system_clock meets the requirements of TrivialClock.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

[编辑] 会员类型

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

[编辑] 会员常数

bool is_steady
[静态的]</div></div>
true,如果刻度之间的时间是恒定的,并调用now的返回值是单调递增的
原文:
true if the time between ticks is constant and calls to now return values that increase monotonically
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(公共静态成员常量)

[编辑] 成员函数

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

(公共静态成员函数) [edit]
[静态的]</div></div>
系统时钟时间点转换std::time_t
原文:
converts a system clock time point to std::time_t
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(公共静态成员函数) [edit]
[静态的]</div></div>
转换std::time_t到系统时钟的时间点
原文:
converts std::time_t to a system clock time point
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(公共静态成员函数) [edit]

[编辑] 另请参阅

(C++11)
单调时钟将永远不会被调整
原文:
monotonic clock that will never be adjusted
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

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

(类)

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