共用方式為


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
    無效的指標控制項的型別。

屬性值/傳回值

傳回 _Left.get() <_Right.get().

需求

標題: <memory>

命名空間: std

請參閱

參考

<memory>

shared_ptr Class

unique_ptr Class

其他資源

unique_ptr 成員