std::chrono::operator+, std::chrono::operator- (std::chrono::year)
来自 cppreference.com
constexpr std::chrono::year operator+( const std::chrono::year& y, const std::chrono::years& ys ) noexcept; |
(1) | (自 C++20 起) |
constexpr std::chrono::year operator+( const std::chrono::years& ys, const std::chrono::year& y ) noexcept; |
(2) | (自 C++20 起) |
constexpr std::chrono::year operator-( const std::chrono::year& y, const std::chrono::years& ys ) noexcept; |
(3) | (自 C++20 起) |
constexpr std::chrono::years operator-( const std::chrono::year& y1, const std::chrono::year& y2 ) noexcept; |
(4) | (自 C++20 起) |
1,2) 将 ys.count() 年添加到 y。
3) 从 y 中减去 ys.count() 年。
4) 返回 y1 和 y2 之间的年份差。
内容 |
[编辑] 返回值
1,2) std::chrono::year(int(y) + ys.count())
3) std::chrono::year(int(y) - ys.count())
4) std::chrono::years(int(y1) - int(y2))
[编辑] 说明
如果 (1-3) 的结果年份值超出范围 [
-32767,
32767]
,则存储的实际值未定义。
减去两个 year
值的结果是 std::chrono::years 类型的持续时间。此持续时间单位表示格里高利历平均年的长度,结果持续时间与操作数所代表的特定年份的天数无关。例如,2018y - 2017y 的结果是 std::chrono::years(1),它表示 365.2425 天,而不是 365 天。
[编辑] 示例
运行此代码
#include <cassert> #include <chrono> int main() { std::chrono::year y{2020}; y = std::chrono::years(12) + y; // overload (2): duration + time point assert(y == std::chrono::year(2032)); y = y - std::chrono::years(33); // overload (3): time point - duration assert(y == std::chrono::year(1999)); // y = std::chrono::years(33) - y; // not supported: duration - time point using namespace std::chrono; constexpr std::chrono::years ys = 2025y - 2020y; // overload (4) static_assert(ys == std::chrono::years(5)); }
[编辑] 另请参阅
增加或减少月份 ( std::chrono::month 的公有成员函数) | |
添加或减去几个月 ( std::chrono::month 的公有成员函数) |