std::chrono::operator==,<=>(std::chrono::year_month_day_last)
来自 cppreference.com
< cpp | chrono | year month day last
定义在头文件 <chrono> 中 |
||
constexpr bool operator==( const std::chrono::year_month_day_last& x, const std::chrono::year_month_day_last& y ) noexcept; |
(1) | (自 C++20 起) |
constexpr std::strong_ordering operator<=>( const std::chrono::year_month_day_last& x, |
(2) | (自 C++20 起) |
比较两个 year_month_day_last
值 x 和 y。这是一个字典序比较:首先比较 year()
,然后是 month()
。
<
, <=
, >
, >=
和 !=
运算符分别从 operator<=> 和 operator== 合成。
[编辑] 返回值
1) x.year() == y.year() && x.month() == y.month()
2) x.year() <=> y.year() != 0 ? x.year() <=> y.year() : x.month() <=> y.month()
[编辑] 注意
如果 x 和 y 都表示有效日期 (x.ok() && y.ok() == true),字典序比较的结果与日历顺序一致。
[编辑] 示例
运行此代码
#include <cassert> #include <chrono> #include <iostream> int main() { auto ymdl1{11/std::chrono::last/2020}; auto mdl{std::chrono::last/std::chrono::November}; auto ymdl2{mdl/2020}; assert(ymdl1 == ymdl2); ymdl1 -= std::chrono::months{2}; ymdl2 -= std::chrono::months{1}; assert(ymdl1 < ymdl2); }