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
正確的指標控制項型別。
屬性值/傳回值
傳回 _Left.get() <_Right.get().
需求
標頭: <memory>
命名空間: std