std::chrono::year::max
From cppreference.com
C++
Date and time library
|
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::chrono::year
| Member functions | ||||
year::max | ||||
| Nonmember functions | ||||
| Helper classes | ||||
(C++26) |
| static constexpr year max() noexcept; |
(since C++20) | |
Returns the largest possible year, that is, std::chrono::year(32767).
[edit] Return value
std::chrono::year(32767)
[edit] 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