std::chrono::operator==(std::chrono::month_weekday_last)
来自 cppreference.com
< cpp | chrono | month weekday last
在头文件 <chrono> 中定义 |
||
constexpr bool operator==( const std::chrono::month_weekday_last& x, const std::chrono::month_weekday_last& y ) noexcept; |
(自 C++20 起) | |
比较两个 month_weekday_last
值 x 和 y.
!=
运算符是 从 operator==
合成的.
[编辑] 返回值
x.month() == y.month() && x.weekday_last() == y.weekday_last()
[编辑] 示例
运行此代码
#include <chrono> int main() { constexpr std::chrono::month_weekday_last mwdl1 { std::chrono::March/std::chrono::Friday[std::chrono::last] }; constexpr std::chrono::month_weekday_last mwdl2 { std::chrono::March, std::chrono::Friday[std::chrono::last] }; static_assert(mwdl1 == mwdl2); }