다음을 통해 공유


operator>= (<memory>)

두 번째 개체 보다 크거나 중인 개체에 대 한 테스트.

template<class Type1, class Del1, class Type2, class Del2>
    bool operator>=(
        const unique_ptr<Type1, Del1>& _Left,
        const unique_ptr<Type2, Del2>& _Right
    );
template<class Ty1, class Ty2>
    bool operator>=(
        const shared_ptr<Ty1>& _Left,
        const shared_ptr<Ty2>& _Right
);

매개 변수

  • _Left
    비교할 개체 중 하나입니다.

  • _Right
    비교할 개체 중 하나입니다.

  • Ty1
    왼쪽된 공유 포인터에서 제어 하는 형식입니다.

  • Ty2
    오른쪽 공유 포인터에서 제어 하는 형식입니다.

속성 값/반환 값

반환 true 경우 _Left 보다 크거나 같아야 합니다 _Right, 및 false 되지 않은 경우입니다.

설명

The template operators return _Left.get() >= _Right.get().

요구 사항

헤더: <memory>

네임 스페이스: 국방 표준

참고 항목

참조

<memory>

shared_ptr Class

unique_ptr Class

기타 리소스

<memory> 멤버

unique_ptr 멤버