Aracılığıyla paylaş


operator>= (<memory>)

Büyük veya eşit ikinci bir nesneye olan bir nesne için sınar.

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
);

Parametreler

  • _Left
    Karşılaştırılacak nesnelerden biri.

  • _Right
    Karşılaştırılacak nesnelerden biri.

  • Ty1
    Sol paylaşılan işaretçi kontrol türü.

  • Ty2
    Denetlenen sağ paylaşılan işaretçi türü.

Özellik Değeri ve Dönüş Değeri

Döndürür true , _Left 'den büyük veya eşit olması _Right, ve false değilse.

Notlar

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

Gereksinimler

Başlık: <memory>

Namespace: std

Ayrıca bkz.

Başvuru

<memory>

shared_ptr Class

unique_ptr Class

Diğer Kaynaklar

<memory> Üyeler

unique_ptr üyeleri