cpp / latest / chrono / year / max.html /

std::chrono::year::max

static constexpr year max() noexcept;
(since C++20)

Returns the largest possible year, that is, std::chrono::year(32767).

Return value

std::chrono::year(32767).

Example

#include <iostream>
#include <chrono>
 
int main()
{
    std::cout << "The maximum year is: " << (int)std::chrono::year::max() << '\n';
}

Output:

The maximum year is: 32767

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/chrono/year/max