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().

要求

页眉: <内存>

命名空间: std

请参见

参考

<memory>

shared_ptr 类

unique_ptr 类

其他资源

memory 成员

unique_ptr 成员