Namespaces
Variants

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

From cppreference.net

constexpr std:: chrono :: year_month_day_last &
operator + = ( const std:: chrono :: years & dy ) const noexcept ;
(1) (自 C++20 起)
constexpr std:: chrono :: year_month_day_last &
operator + = ( const std:: chrono :: months & dm ) const noexcept ;
(2) (自 C++20 起)
constexpr std:: chrono :: year_month_day_last &
operator - = ( const std:: chrono :: years & dy ) const noexcept ;
(3) (自 C++20 起)
constexpr std:: chrono :: year_month_day_last &
operator - = ( const std:: chrono :: months & dm ) const noexcept ;
(4) (自 C++20 起)

修改 * this 所表示的时间点,增减时长为 dy dm

1) 等价于 * this = * this + dy ;
2) 等价于 * this = * this + dm ;
3) 等价于 * this = * this - dy ;
4) 等价于 * this = * this - dm ;

对于可同时转换为 std::chrono::years std::chrono::months 的时间段,若调用存在歧义,则优先选择 years 重载 (1,3)

示例

#include <cassert>
#include <chrono>
int main()
{
    auto ymdl{11/std::chrono::last/2020};
    ymdl += std::chrono::years(15);
    assert(ymdl.day() == std::chrono::day(30));
    assert(ymdl.month() == std::chrono::November);
    assert(ymdl.year() == std::chrono::year(2035));
    ymdl -= std::chrono::months(6);
    assert(ymdl.day() == std::chrono::day(31));
    assert(ymdl.month() == std::chrono::May);
    assert(ymdl.year() == std::chrono::year(2035));
}

参见

year_month_day_last 进行年或月的加减运算
(函数)