operator!= (<allocators>)

测试指定类的分配器对象之间的不等性。

template <class Type, class Sync>
    bool operator!=(
        const allocator_base<Type, Sync>& _Left,
        const allocator_base<Type, Sync>& _Right
    );

参数

参数

说明

_Left

将程序对象为不相等测试。

_Right

将程序对象为不相等测试。

返回值

true,则分配程序对象不相等;false,则分配程序对象相等。

备注

模板运算符返回 !(_Left == _Right)。

要求

页眉: <分配程序>

**命名空间:**stdext

请参见

参考

<allocators>