命名空间
变体
操作

std::chrono::operator+, std::chrono::operator- (std::chrono::year)

来自 cppreference.com
< cpp‎ | chrono‎ | year
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三路比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
 
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) 返回 y1y2 之间的年份差。

内容

[编辑] 返回值

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) 的结果年份值超出范围 [-3276732767],则存储的实际值未定义。

减去两个 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 的公有成员函数) [编辑]