constexpr year_month_weekday& operator+=(const months& m) noexcept; // (1) C++20
constexpr year_month_weekday& operator+=(const years& y) noexcept; // (2) C++20
概要
year_month_weekday
の値に対して加算の複合代入を行う。
- (1) : 月の時間間隔を加算する
- (2) : 年の時間間隔を加算する
パラメータの型が、カレンダー時間のmonth
、year
ではなく、時間間隔を表すmonths
、years
であることに注意。
テンプレートパラメータ制約
効果
- (1) :
*this = *this + m
- (2) :
*this = *this + y
戻り値
- (1), (2) :
*this
例外
投げない
例
#include <cassert>
#include <chrono>
namespace chrono = std::chrono;
using namespace std::chrono_literals;
int main()
{
chrono::year_month_weekday date = 2019y/2/chrono::Sunday[2];
date += chrono::months{1}; // 1ヶ月進める
date += chrono::years{1}; // 1年進める
assert(chrono::year_month_day{chrono::sys_days{date}} == 2020y/3/8);
}
出力
バージョン
言語
- C++20
処理系
- Clang: 8.0 ✅
- GCC: 11.1 ✅
- Visual C++: 2019 Update 3 ❌