std::chrono::year_month_day::year, std::chrono::year_month_day::month, std::chrono::year_month_day::day

From cppreference.com
 
 
Utilities library
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(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++17)

Elementary string conversions
(C++17)
(C++17)
 
Date and time utilities
(C++11)
(C++11)
Time of day
(C++20)



(C++20)(C++20)(C++20)(C++20)
Clocks
(C++20)
                                             
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Calendars
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Time zones
(C++20)
(C++20)
(C++20)
(C++20)
C-style date and time
 
 
constexpr std::chrono::year year() const noexcept;
(1) (since C++20)
constexpr std::chrono::month month() const noexcept;
(2) (since C++20)
constexpr std::chrono::day day() const noexcept;
(3) (since C++20)

Retrieves the year, month and day values stored in this year_month_day object.

Return values

1) Returns the stored std::chrono::year value.
2) Returns the stored std::chrono::month value.
3) Returns the stored std::chrono::day value.

Example

#include <iostream>
#include <chrono>
 
int main()
{
    std::cout << std::boolalpha;
 
    constexpr auto ymd {std::chrono::July/1/2021};
 
    std::cout << (ymd.year() == std::chrono::year(2021)) << ' ';
    std::cout << (ymd.month() == std::chrono::month(7)) << ' ';
    std::cout << (ymd.day() == std::chrono::day(1)) << '\n';
 }

Output:

true true true