Aracılığıyla paylaş


operator< (<memory>)

Bir nesne olmanın ikinci nesnenin'dan 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 imleci tarafından denetlenen türü.

  • Ty2
    Sağ fare işaretçisini tarafından denetlenen türü.

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

Döndürür_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

unique_ptr üyeleri