std::chrono::year::operator int

来自cppreference.com
< cpp‎ | chrono‎ | year
 
 
 
 
constexpr explicit operator int() const noexcept;
(C++20 起)

返回 *this 中存储的年份值。

返回值

*this 中存储的年份值。

示例

#include <chrono>
#include <iostream>
using namespace std::chrono;
 
int main()
{
    constexpr std::chrono::year y{2020};
    std::cout << "年份是: " << static_cast<int>(y) << '\n';
 
    const year_month_day ymd{floor<days>(system_clock::now())};
    const std::chrono::year this_year{ymd.year()};
    std::cout << "今年是: " << int(this_year) << '\n';
}

可能的输出:

年份是: 2020
今年是: 2023