다음을 통해 공유


<thread> 연산자

operator!=
operator>
operator>=
operator<
operator<<
operator<=
연산자==

operator>=

하나의 thread::id 개체가 다른 개체보다 크거나 같은지를 확인합니다.

bool operator>= (
    thread::id Left,
    thread::id Right) noexcept

매개 변수

왼쪽
왼쪽 thread::id 개체입니다.

오른쪽
오른쪽 thread::id 개체입니다.

Return Value

!(Left < Right)

설명

이 함수는 예외를 throw하지 않습니다.

operator>

하나의 thread::id 개체가 다른 개체보다 큰지를 확인합니다.

bool operator> (
    thread::id Left,
    thread::id Right) noexcept

매개 변수

왼쪽
왼쪽 thread::id 개체입니다.

오른쪽
오른쪽 thread::id 개체입니다.

Return Value

Right < Left

설명

이 함수는 예외를 throw하지 않습니다.

operator<=

하나의 thread::id 개체가 다른 개체보다 작거나 같은지를 확인합니다.

bool operator<= (
    thread::id Left,
    thread::id Right) noexcept

매개 변수

왼쪽
왼쪽 thread::id 개체입니다.

오른쪽
오른쪽 thread::id 개체입니다.

Return Value

!(Right < Left)

설명

이 함수는 예외를 throw하지 않습니다.

operator<

하나의 thread::id 개체가 다른 개체보다 작은지를 확인합니다.

bool operator<(
    thread::id Left,
    thread::id Right) noexcept

매개 변수

왼쪽
왼쪽 thread::id 개체입니다.

오른쪽
오른쪽 thread::id 개체입니다.

Return Value

true왼쪽전체 순서에서 오른쪽 앞에 오면 되며, false그렇지 않으면 .입니다.

설명

연산자는 모든 thread::id 개체의 전체 순서를 정의합니다. 이러한 개체는 연관 컨테이너에서 키로 사용할 수 있습니다.

이 함수는 예외를 throw하지 않습니다.

operator!=

thread::id 개체가 다른지 비교합니다.

bool operator!= (
    thread::id Left,
    thread::id Right) noexcept

매개 변수

왼쪽
왼쪽 thread::id 개체입니다.

오른쪽
오른쪽 thread::id 개체입니다.

Return Value

!(Left == Right)

설명

이 함수는 예외를 throw하지 않습니다.

연산자==

thread::id 개체가 같은지 비교합니다.

bool operator== (
    thread::id Left,
    thread::id Right) noexcept

매개 변수

왼쪽
왼쪽 thread::id 개체입니다.

오른쪽
오른쪽 thread::id 개체입니다.

Return Value

두 개체가 실행의 동일 스레드를 나타내거나 어떤 개체도 실행의 스레드를 나타내지 않으면 true이고 그렇지 않으면 false입니다.

설명

이 함수는 예외를 throw하지 않습니다.

operator<<

thread::id 개체의 텍스트 표현을 스트림에 삽입합니다.

template <class Elem, class Tr>
basic_ostream<Elem, Tr>& operator<<(
    basic_ostream<Elem, Tr>& Ostr, thread::id Id);

매개 변수

Ostr
basic_ostream 개체입니다.

ID
thread::id 개체입니다.

Return Value

Ostr.

설명

이 함수는 Ostr에 ID삽입합니다.

thread::id 개체가 비교 결과 같으면 해당 개체의 삽입된 텍스트 표현은 동일합니다.

참고 항목

<thread>