operator==,!=,<,<=,>,>=,<=>(std::chrono::time_point)
| 定义于头文件 <chrono> |
||
| (1) | ||
template< class Clock, class Dur1, class Dur2 > bool operator==( const std::chrono::time_point<Clock,Dur1>& lhs, |
(C++11 起) (until C++14) |
|
| template< class Clock, class Dur1, class Dur2 > constexpr bool operator==( const std::chrono::time_point<Clock,Dur1>& lhs, |
(C++14 起) | |
| (2) | ||
template< class Clock, class Dur1, class Dur2 > bool operator!=( const std::chrono::time_point<Clock,Dur1>& lhs, |
(C++11 起) (until C++14) |
|
| template< class Clock, class Dur1, class Dur2 > constexpr bool operator!=( const std::chrono::time_point<Clock,Dur1>& lhs, |
(C++14 起) (C++20 前) |
|
| (3) | ||
template< class Clock, class Dur1, class Dur2 > bool operator<( const std::chrono::time_point<Clock,Dur1>& lhs, |
(C++11 起) (until C++14) |
|
| template< class Clock, class Dur1, class Dur2 > constexpr bool operator<( const std::chrono::time_point<Clock,Dur1>& lhs, |
(C++14 起) | |
| (4) | ||
template< class Clock, class Dur1, class Dur2 > bool operator<=( const std::chrono::time_point<Clock,Dur1>& lhs, |
(C++11 起) (until C++14) |
|
| template< class Clock, class Dur1, class Dur2 > constexpr bool operator<=( const std::chrono::time_point<Clock,Dur1>& lhs, |
(C++14 起) | |
| (5) | ||
template< class Clock, class Dur1, class Dur2 > bool operator>( const std::chrono::time_point<Clock,Dur1>& lhs, |
(C++11 起) (until C++14) |
|
| template< class Clock, class Dur1, class Dur2 > constexpr bool operator>( const std::chrono::time_point<Clock,Dur1>& lhs, |
(C++14 起) | |
| (6) | ||
template< class Clock, class Dur1, class Dur2 > bool operator>=( const std::chrono::time_point<Clock,Dur1>& lhs, |
(C++11 起) (until C++14) |
|
| template< class Clock, class Dur1, class Dur2 > constexpr bool operator>=( const std::chrono::time_point<Clock,Dur1>& lhs, |
(C++14 起) | |
| template< class Clock, class Dur1, std::three_way_comparable_with<Dur1> Dur2 > constexpr auto operator<=>( const std::chrono::time_point<Clock,Dur1>& lhs, |
(7) | (C++20 起) |
比较两个时间点。比较是通过比较时间点的 time_since_epoch() 结果完成的。
Dur1 和 Dur2 的三向比较结果类型。|
|
(C++20 起) |
目录 |
[编辑] 参数
| lhs, rhs | - | 要比较的时间点 |
[编辑] 返回值
[编辑] 异常
可能抛出实现定义的异常。
[编辑] 注意
在 C++11 中,time_point 的双向比较运算符不是 constexpr,这在 C++14 中得到了纠正。