CppDS.com

C++ 98 11 14 17 20 手册

operator==,!=(std::allocator)

来自cppreference.com
< cpp‎ | memory‎ | allocator
 
 
动态内存管理
智能指针
(C++11)
(C++11)
(C++11)
(C++17 前)
(C++11)
分配器
内存资源
未初始化存储
未初始化内存算法
有制约的未初始化内存算法
垃圾收集支持
杂项
(C++20)
(C++11)
(C++11)
C 库
低层内存管理
 
std::allocator
成员函数
非成员函数
operator==operator!=
(C++20 前)
 
(1)
template< class T1, class T2 >
bool operator==( const allocator<T1>& lhs, const allocator<T2>& rhs ) throw();
(C++11 前)
template< class T1, class T2 >
bool operator==( const allocator<T1>& lhs, const allocator<T2>& rhs ) noexcept;
(C++11 起)
(C++20 前)
template< class T1, class T2 >
constexpr bool operator==( const allocator<T1>& lhs, const allocator<T2>& rhs ) noexcept;
(C++20 起)
(2)
template< class T1, class T2 >
bool operator!=( const allocator<T1>& lhs, const allocator<T2>& rhs ) throw();
(C++11 前)
template< class T1, class T2 >
bool operator!=( const allocator<T1>& lhs, const allocator<T2>& rhs ) noexcept;
(C++11 起)
(C++20 前)

比较二个默认分配器。因为默认分配器无状态,故二个默认分配器始终相等。

1) 返回 true
2) 返回 false

参数

lhs, rhs - 要比较的默认分配器

返回值

1) true
2) false
关闭