CppDS.com

C++ 98 11 14 17 20 手册

std::chrono::operator==,<,<=,>,>=,<=>(std::chrono::leap_second)

来自cppreference.com
< cpp‎ | chrono‎ | leap second
 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

初等字符串转换
(C++17)
(C++17)
 
日期和时间工具
(C++11)
(C++11)
当天时刻
(C++20)



(C++20)(C++20)(C++20)(C++20)
时钟
(C++20)
                                             
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
日历
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
时区
(C++20)
(C++20)
(C++20)
(C++20)
C 风格日期和时间
 
std::chrono::leap_second
成员函数
非成员函数
operator==operator<operator<=operator>operator>=operator<=>
 
定义于头文件 <chrono>
constexpr bool operator==( const std::chrono::leap_second& x,
                           const std::chrono::leap_second& y ) noexcept;
(1) (C++20 起)
constexpr std::strong_ordering operator<=>( const std::chrono::leap_second& x,
                                            const std::chrono::leap_second& y ) noexcept;
(2) (C++20 起)
template< class Duration >

constexpr bool operator==( const std::chrono::leap_second& x,

                           const std::chrono::sys_time<Duration>& y ) noexcept;
(3) (C++20 起)
template< class Duration >

constexpr bool operator< ( const std::chrono::leap_second& x,

                           const std::chrono::sys_time<Duration>& y ) noexcept;
(4) (C++20 起)
template< class Duration >

constexpr bool operator< ( const std::chrono::sys_time<Duration>& x,

                           const std::chrono::leap_second& y ) noexcept;
(5) (C++20 起)
template< class Duration >

constexpr bool operator> ( const std::chrono::leap_second& x,

                           const std::chrono::sys_time<Duration>& y ) noexcept;
(6) (C++20 起)
template< class Duration >

constexpr bool operator> ( const std::chrono::sys_time<Duration>& x,

                           const std::chrono::leap_second& y ) noexcept;
(7) (C++20 起)
template< class Duration >

constexpr bool operator<=( const std::chrono::leap_second& x,

                           const std::chrono::sys_time<Duration>& y ) noexcept;
(8) (C++20 起)
template< class Duration >

constexpr bool operator<=( const std::chrono::sys_time<Duration>& x,

                           const std::chrono::leap_second& y ) noexcept;
(9) (C++20 起)
template< class Duration >

constexpr bool operator>=( const std::chrono::leap& x,

                           const std::chrono::sys_time<Duration>& y ) noexcept;
(10) (C++20 起)
template< class Duration >

constexpr bool operator>=( const std::chrono::sys_time<Duration>& x,

                           const std::chrono::leap_second& y ) noexcept;
(11) (C++20 起)
template< class Duration >

    requires std::three_­way_­comparable_­with<
        std:chrono::sys_seconds, std::chrono::sys_time<Duration>>
constexpr auto operator<=>( const std::chrono::leap_second& x,

                            const std::chrono::sys_time<Duration>& y ) noexcept;
(12) (C++20 起)

比较对象 xy 所表示的日期和时间。

(12) 的返回类型从 x.date() <=> y 推导,从而为 std::chrono::secondsDuration 的三路比较结果类型。

返回值

1) x.date() == y.date()
2) x.date() <=> y.date()
3) x.date() == y
4) x.date() < y
5) x < y.date()
6) x.date() > y
7) x > y.date()
8) x.date() <= y
9) x <= y.date()
10) x.date() >= y
11) x >= y.date()
12) x.date() <=> y
关闭