operator> (<memory>)
測試一個大於第二個物件的物件。
template<class Ty1, class Del1, class Ty2, class Del2>
bool operator>(
const unique_ptr<Ty1, Del1>& _Left,
const unique_ptr<Ty2&, Del2gt;& _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>
Namespace: 標準