共用方式為


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 ,如果它不是。

備註

範本運算子會傳回 _Left.get() >=_Right.get()。

需求

標頭: <memory>

命名空間: std

請參閱

參考

<memory>

shared_ptr 類別

unique_ptr 類別

其他資源

<memory> 成員

unique_ptr 成員