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

来自cppreference.com
< cpp‎ | chrono‎ | year month
 
 
工具库
语言支持
类型支持(基本类型、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_month operator+( const std::chrono::year_month& ym,
                                             const std::chrono::years& dy ) noexcept;
(1) (C++20 起)
constexpr std::chrono::year_month operator+( const std::chrono::years& dy,
                                             const std::chrono::year_month& ym ) noexcept;
(2) (C++20 起)
constexpr std::chrono::year_month operator+( const std::chrono::year_month& ym,
                                             const std::chrono::months& dm ) noexcept;
(3) (C++20 起)
constexpr std::chrono::year_month operator+( const std::chrono::months& dm,
                                             const std::chrono::year_month& ym ) noexcept;
(4) (C++20 起)
constexpr std::chrono::year_month operator-( const std::chrono::year_month& ym,
                                             const std::chrono::years& dy ) noexcept;
(5) (C++20 起)
constexpr std::chrono::year_month operator-( const std::chrono::year_month& ym,
                                             const std::chrono::months& dm ) noexcept;
(6) (C++20 起)
constexpr std::chrono::months operator-( const std::chrono::year_month& ym1,
                                         const std::chrono::year_month& ym2 ) noexcept;
(7) (C++20 起)
1,2) 加上 dy.count() 年到 ym
3,4) 加上 dm.count() 月到 ym
5)ym 减去 dy.count() 年。
6)ym 减去 dm.count() 月。
7) 返回 ym1ym2 所表示的两个时间点间以月计量的差。

对于能转换到 std::chrono::yearsstd::chrono::months 两者的时长,若调用有歧义,则偏好 years 重载 (1,2,5)

返回值

1,2) std::chrono::year_month(ym.year() + dy, ym.month())
3,4) A year_month value z such that z - ym == dm
5) ym + -dy
6) ym + -dm
7)
ym1.year() - ym2.year() + std::chrono::months(int(unsigned(ym1.month())) -
int(unsigned(ym2.month())))

注解

两个 year_month 值相减的结果是 std::chrono::months 类型时长。此时长单位表示格里高利月的平均长度(30.436875 日),而产生的时长与问题中的实际日数无关。例如 2017y/3 - 2017y/2 的结果是 std::chrono::months(1),即使 2017 年二月只含 28 日。

示例

#include <cassert>
#include <chrono>
 
int main()
{
    auto ym{std::chrono::year(2021)/std::chrono::July};
 
    ym = ym + std::chrono::months(14);
    assert(ym.month() == std::chrono::September);
    assert(ym.year() == std::chrono::year(2022));
 
    ym = ym - std::chrono::years(3);
    assert(ym.month() == std::chrono::month(9));
    assert(ym.year() == std::chrono::year(2019));
 
    ym = ym + (std::chrono::September - std::chrono::month(2));
    assert(ym.month() == std::chrono::April);
    assert(ym.year() == std::chrono::year(2020));
}

参阅

以一定量的月和年为程度修改 year_month
(公开成员函数)