Namespaces
Variants
Views
Actions

std::chrono::utc_clock

From cppreference.com
< cpp‎ | chrono
 
 
Utilities library
Language support
Type support (basic types, RTTI)
Library feature-test macros (C++20)
Dynamic memory management
Program utilities
Coroutine support (C++20)
Variadic functions
Debugging support
(C++26)
Three-way comparison
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)   
(C++20)
Swap and type operations
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
Elementary string conversions
(C++17)
(C++17)

 
Date and time utilities
Time point
(C++11)
(C++20)
Duration
(C++11)
Clocks
(C++11)      
(C++20)
utc_clock
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Time of day
(C++20)(C++20)
(C++20)(C++20)
(C++20)

Calendars
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)(C++20)
Time zones
(C++20)
(C++20)
(C++20)
chrono I/O
(C++20)
C-style date and time
 
std::chrono::utc_clock
 
Defined in header <chrono>
class utc_clock;
(since C++20)

The clock std::chrono::utc_clock is a Clock that represents Coordinated Universal Time (UTC). It measures time since 00:00:00 UTC, Thursday, 1 January 1970, including leap seconds.

utc_clock meets the Clock requirements. It does not meet the TrivialClock requirements unless the implementation can guarantee that now() does not throw an exception.

Contents

Time point family

Defined in namespace std::chrono
template<class Duration>
using utc_time = std::chrono::time_point<std::chrono::utc_clock, Duration>;
(since C++20)
using utc_seconds = utc_time<std::chrono::seconds>;
(since C++20)
performs stream output on a utc_time
(function template) [edit]
parses a utc_time from a stream according to the provided format
(function template) [edit]
formatting support for utc_time
(class template specialization) [edit]

[edit] Member types

Member type Definition
rep signed 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>, capable of representing negative durations
time_point std::chrono::time_point<std::chrono::utc_clock>

[edit] Member constants

constexpr bool is_steady
[static]
true if the time between ticks is always constant, i.e. calls to now() return values that increase monotonically even in case of some external clock adjustment, otherwise false
(public static member constant)

[edit] Member functions

[static]
returns a std::chrono::time_point representing the current point in time
(public static member function) [edit]
[static]
converts utc_time to sys_time
(public static member function) [edit]
[static]
converts sys_time to utc_time
(public static member function) [edit]

[edit] Non-member functions

obtains leap second insertion information from a utc_time object
(function template) [edit]

[edit] Helper classes

leap second insertion information
(class) [edit]

[edit] Notes

The official UTC epoch is 1 January 1972. utc_clock uses 1 January 1970 instead to be consistent with std::chrono::system_clock.