std::chrono::operator+, std::chrono::operator- (std::chrono::year_month)
来自 cppreference.com
< cpp | chrono | year month
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) 返回 ym1 和 ym2 所表示的两个时间点之间的月数差。
对于可以转换为 std::chrono::years 和 std::chrono::months 的持续时间,如果调用在其他情况下不明确,则优先使用 years
重载 (1,2,5)。
内容 |
[编辑] 返回值
1,2) std::chrono::year_month(ym.year() + dy, ym.month())
3,4) 一个
year_month
值 z
,使得 z - ym == dm 并且 z.ok() == true.5) ym + -dy
6) ym + -dm
7)
ym1.year() - ym2.year() + std::chrono::months(int(unsigned(ym1.month())) -
int(unsigned(ym2.month())))
ym1.year() - ym2.year() + std::chrono::months(int(unsigned(ym1.month())) -
int(unsigned(ym2.month())))
[edit] Notes
减去两个 year_month
值的结果是类型为 std::chrono::months 的持续时间。此持续时间单位表示平均公历月份的长度(30.436875 天),而生成的持续时间与所讨论的时间段的实际天数无关。例如,2017y/3 - 2017y/2 的结果是 std::chrono::months(1),即使 2017 年 2 月只有 28 天。
[edit] Example
运行此代码
#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)); }
[edit] See also
通过一些月数或年数修改 year_month (public member function) |