std::chrono::operator==,<=>(std::chrono::month_day)
来自cppreference.com
日期和时间工具
时间点 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
时长 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
时钟 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
当天时刻 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
日历 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
时区 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
chrono I/O |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(C++20)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
C 风格日期和时间 |
std::chrono::month_day
成员函数 | ||||
非成员函数 | ||||
operator==operator<=>
|
||||
辅助类 | ||||
(C++26)
|
在标头
<chrono>
定义
|
||
constexpr bool operator==( const std::chrono::month_day& x,
const std::chrono::month_day& y ) noexcept; |
(1) | (C++20 起) |
constexpr
std::strong_ordering
operator!=( const std::chrono::month_day& x,
const std::chrono::month_day& y ) noexcept; |
(2) | (C++20 起) |
比较二个 month_day
值。
<
、 <=
、 >
、 >=
及 !=
运算符分别从 operator<=>
与 operator==
合成。
返回值
1) x.month() == y.month() && x.day() == y.day()
2) x.month() <=>
y.month()
!= 0 ? x.month() <=> y.month() : x.day() <=> y.day()
示例
运行此代码
#include <iostream> #include <chrono> int main() { constexpr auto md1 {std::chrono::August/15}; constexpr auto md2 {std::chrono::month(8)/std::chrono::day(15)}; std::cout << std::boolalpha << (md1 == md2) << '\n'; static_assert(md1 <= md2); }
输出:
true