static constexpr year max() noexcept; // (1) C++20
概要
year
クラスが扱える最大値を取得する。
戻り値
year{32767}
例
#include <iostream>
#include <chrono>
namespace chrono = std::chrono;
int main()
{
std::cout << chrono::years::max() << std::endl;
}
出力
32767
バージョン
言語
- C++20
処理系
- Clang: 8.0 ✅
- GCC: 9.2 ❌
- Visual C++: 2019 Update 3 ❌