共用方式為


owner_less

允許按擁有權混合比較共用指標和弱式指標。 如果保留參數之成員函式的 owner_before,排序,在正確的參數會傳回 true 。

template<class Type>
    struct owner_less; // not defined

template<class Type>
    struct owner_less<shared_ptr<Type> > {
    bool operator()(
        const shared_ptr<Type>& _Left,
        const shared_ptr<Type>& _Right
);
    bool operator()(
        const shared_ptr<Type>& _Left,
        const weak_ptr<Type>& _Right
);
    bool operator()(
        const weak_ptr<Type>& _Left,
        const shared_ptr<Type>& _Right
);
};

template<class Type>
    struct owner_less<weak_ptr<Type> >
    bool operator()(
        const weak_ptr<Type>& _Left,
        const weak_ptr<Type>& _Right
);
    bool operator()(
        const weak_ptr<Type>& _Left,
        const shared_ptr<Ty>& _Right
);
    bool operator()(
        const shared_ptr<Type>& _Left,
        const weak_ptr<Type>& _Right
);
};

參數

  • _left
    共用或弱式指標。

  • _Right
    共用或弱式指標。

屬性值/傳回值

_Left ,如果由成員函式 owner_before之前,排序, _Right 會傳回 true 。

備註

樣板類別定義了其所有成員運算子會傳回 _Left.owner_before(_Right)。

需求

標頭: <memory>

命名空間: std

請參閱

參考

shared_ptr::owner_before

weak_ptr::owner_before

<memory>