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>
命名空間: std