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.equals(_Right)。

要求

页眉: <分配程序>

**命名空间:**stdext

请参见

参考

<allocators>