CppDS.com

C++ 98 11 14 17 20 手册

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

来自cppreference.com
< cpp‎ | chrono‎ | year
 
 
日期和时间工具
(C++11)
(C++11)
当天时刻
(C++20)



(C++20)(C++20)(C++20)(C++20)
时钟
(C++20)
                                             
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
日历
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
时区
(C++20)
(C++20)
(C++20)
(C++20)
C 风格日期和时间
 
 
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 的引用。

注意

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

示例

参阅

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