| Defined in header <chrono> | ||
|---|---|---|
| class system_clock; | (since C++11) | 
Class std::chrono::system_clock represents the system-wide real time wall clock.
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.
std::chrono::system_clock meets the requirements of TrivialClock.
| The epoch of  | (until C++20) | 
| 
 | (since C++20) | 
| Defined in namespace std::chrono | ||
| template<class Duration> using sys_time = std::chrono::time_point<std::chrono::system_clock, Duration>; | (since C++20) | |
| using sys_seconds = sys_time<std::chrono::seconds>; | (since C++20) | |
| using sys_days = sys_time<std::chrono::days>; | (since C++20) | 
| (C++20) | performs stream output on a sys_time (function template) | 
| (C++20) | parses a sys_time from a stream according to the provided format (function template) | 
| (C++20) | formatting support for sys_time(class template specialization) | 
| Member type | Definition | 
|---|---|
| rep | signed arithmetic type representing the number of ticks in the clock's duration | 
| period | a std::ratiotype representing the tick period of the clock, in seconds | 
| duration | std::chrono::duration<rep, period>, capable of representing negative durations | 
| time_point | std::chrono::time_point<std::chrono::system_clock> | 
| constexpr bool is_steady [static] | trueif the time between ticks is always constant, i.e. calls tonow()return values that increase monotonically even in case of some external clock adjustment, otherwisefalse(public static member constant) | 
| [static] | returns a std::chrono::time_pointrepresenting the current point in time(public static member function) | 
| [static] | converts a system clock time point to std::time_t(public static member function) | 
| [static] | converts std::time_tto a system clock time point(public static member function) | 
The system_clock's time value can be internally adjusted at any time by the operating system, for example due to NTP synchronization or the user changing the system's clock. Daylight Saving Time and time zone changes, however, do not affect it since it is based on the UTC time-zone.
| (C++11) | monotonic clock that will never be adjusted (class) | 
| (C++11) | the clock with the shortest tick period available (class) | 
    © cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
    https://en.cppreference.com/w/cpp/chrono/system_clock