std::chrono::hh_mm_ss<Duration>::hh_mm_ss

From cppreference.com
< cpp‎ | chrono‎ | hh mm ss
Date and time library
Time point
(C++11)
(C++20)
Duration
(C++11)
Clocks
(C++11)
(C++11)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Time of day
(C++20)(C++20)
(C++20)(C++20)
(C++20)

Calendar
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)(C++20)
Time zone
(C++20)
(C++20)
(C++20) (C++20) (C++20) (C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
chrono I/O
(C++20)
C-style date and time
constexpr hh_mm_ss( ) noexcept : hh_mm_ss{Duration:: zero ( ) } { }
(1)
constexpr explicit hh_mm_ss( Duration d );
(2)

Constructs a hh_mm_ss object.

1) Constructs a hh_mm_ss object corresponding to Duration::zero().
2) Constructs a hh_mm_ss object corresponding to d:

Parameters

d - the duration to be broken down

Example

#include <chrono>
#include <print>
 
int main()
{
    std::println("Default constructor: {}", std::chrono::hh_mm_ss<std::chrono::minutes>{});
 
    std::chrono::time_point now = std::chrono::system_clock::now();
    std::chrono::hh_mm_ss time_of_day{now - std::chrono::floor<std::chrono::days>(now)};
    std::println("The time of day is: {}", time_of_day);
}

Possible output:

Default constructor: 00:00:00
The time of day is: 12:13:14.151617189