std::chrono::year::operator+=, std::chrono::year::operator-=

来自cppreference.com
< cpp‎ | chrono‎ | year
 
 
 
 
constexpr std::chrono::year& operator+=( const std::chrono::years& y ) noexcept;
(1) (C++20 起)
constexpr std::chrono::year& operator-=( const std::chrono::years& y ) noexcept;
(2) (C++20 起)

从年份值加或减 y.count() 年。

1) 等价于 *this = *this + y;
2) 等价于 *this = *this - y;

返回值

到修改后的此 year 的引用。

注解

若结果会在范围 [-3276732767] 外,则实际存储值未指定。

示例

#include <chrono>
#include <iostream>
 
int main()
{
    using namespace std::literals::chrono_literals;
    std::cout << std::boolalpha;
 
    std::chrono::year y{2020};
 
    y += std::chrono::years(12);
    std::cout << (y == 2032y) << ' ';
 
    y -= std::chrono::years(33);
    std::cout << (y == 1999y) << '\n';
}

输出:

true true

参阅

自增或自减 year
(公开成员函数)
进行 year 上的算术
(函数)