operator==,!=,<,<=,>,>=,<=> (std::chrono::duration)
|
template
<
class
Rep1,
class
Period1,
class
Rep2,
class
Period2
>
constexpr
bool
operator
==
(
const
std::
chrono
::
duration
<
Rep1, Period1
>
&
lhs,
|
(1) | (C++11 이후) |
|
template
<
class
Rep1,
class
Period1,
class
Rep2,
class
Period2
>
constexpr
bool
operator
!
=
(
const
std::
chrono
::
duration
<
Rep1, Period1
>
&
lhs,
|
(2) |
(C++11부터)
(C++20까지) |
|
template
<
class
Rep1,
class
Period1,
class
Rep2,
class
Period2
>
constexpr
bool
operator
<
(
const
std::
chrono
::
duration
<
Rep1, Period1
>
&
lhs,
|
(3) | (C++11 이후) |
|
template
<
class
Rep1,
class
Period1,
class
Rep2,
class
Period2
>
constexpr
bool
operator
<=
(
const
std::
chrono
::
duration
<
Rep1, Period1
>
&
lhs,
|
(4) | (C++11 이후) |
|
template
<
class
Rep1,
class
Period1,
class
Rep2,
class
Period2
>
constexpr
bool
operator
>
(
const
std::
chrono
::
duration
<
Rep1, Period1
>
&
lhs,
|
(5) | (C++11 이후) |
|
template
<
class
Rep1,
class
Period1,
class
Rep2,
class
Period2
>
constexpr
bool
operator
>=
(
const
std::
chrono
::
duration
<
Rep1, Period1
>
&
lhs,
|
(6) | (C++11 이후) |
|
template
<
class
Rep1,
class
Period1,
class
Rep2,
class
Period2
>
requires
std::
three_way_comparable
<
std::
common_type_t
<
Rep1, Rep2
>>
|
(7) | (C++20 이후) |
두 지속 시간을 비교합니다.
CT
를
std::
common_type
<
std::
chrono
::
duration
<
Rep1, Period1
>
,
std::
chrono
::
duration
<
Rep2, Period2
>>
::
type
로 정의합니다:
|
|
(C++20부터) |
매개변수
| lhs | - | 연산자 좌측의 duration |
| rhs | - | 연산자 우측의 duration |
반환값
예제
#include <chrono> #include <iostream> int main() { constexpr auto t1 = std::chrono::seconds(2); constexpr auto t2 = std::chrono::milliseconds(2000); if constexpr (t1 == t2) std::cout << t1 << " == " << t2 << '\n'; else std::cout << t1 << " != " << t2 << '\n'; constexpr auto t3 = std::chrono::seconds(61); constexpr auto t4 = std::chrono::minutes(1); if constexpr (t3 > t4) std::cout << t3 << " > " << t4 << '\n'; else std::cout << t3 << " <= " << t4 << '\n'; using namespace std::chrono_literals; static_assert(1h == 60min); static_assert(1min == 60s); static_assert(1s == 1'000ms); static_assert(1ms == 1'000us); static_assert(1us == 1'000ns); }
출력:
2s == 2000ms 61s > 1min