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如果還沒有。
備註
The template operators return _Left.get() >= _Right.get().
需求
標頭: <memory>
Namespace: 標準