allocator::operator=
分配给另一个分配程序对象的分配程序对象。
template<class Other>
allocator<Type>& operator=(
const allocator<Other>& _Right
);
参数
- _Right
将分配的分配程序对象。另一个此类对象。
返回值
对分配程序的对象的引用
备注
模板赋值运算符不执行任何操作。 但一般来说,分配程序对象分配给另一个分配程序对象应比较等于它允许交互和混合对象分配和释放两个对象之间分配程序。
示例
// allocator_op_assign.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
#include <vector>
using namespace std;
class Int {
public:
Int(int i)
{
cout << "Constructing " << ( void* )this << endl;
x = i;
bIsConstructed = true;
};
~Int( ) {
cout << "Destructing " << ( void* )this << endl;
bIsConstructed = false;
};
Int &operator++( )
{
x++;
return *this;
};
int x;
private:
bool bIsConstructed;
};
int main( )
{
allocator<Int> Alloc;
allocator<Int> cAlloc ;
cAlloc = Alloc;
}
要求
页眉: <内存>
命名空间: std