◐ Shell
clean mode source ↗

std::chrono::year::max - cppreference.com

Date and time library

Time point

(C++11)

(C++20)

Duration

(C++11)

Clocks

(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)

chrono I/O

(C++20)


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

Run this code

#include <chrono>
#include <iostream>

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

Output:

The maximum year is: 32767