GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::chrono::steady_clock(3) C++ Standard Libary std::chrono::steady_clock(3)

std::chrono::steady_clock - std::chrono::steady_clock


Defined in header <chrono>
class steady_clock; (since C++11)


Class std::chrono::steady_clock represents a monotonic clock. The time points of
this clock cannot decrease as physical time moves forward and the time between ticks
of this clock is constant. This clock is not related to wall clock time (for
example, it can be time since last reboot), and is most suitable for measuring
intervals.


std::chrono::steady_clock meets the requirements of TrivialClock.


Member type Definition
rep arithmetic type representing the number of ticks in the clock's duration
period 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>


constexpr bool is_steady steady clock flag, always true
[static] (public static member constant)


now returns a time_point representing the current value of the clock
[static] (public static member function)


system_clock wall clock time from the system-wide realtime clock
(C++11) (class)
high_resolution_clock the clock with the shortest tick period available
(C++11) (class)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.