allocator::operator=
Atribui um objeto do alocador a outro objeto do alocador.
template<class Other>
allocator<Type>& operator=(
const allocator<Other>& _Right
);
Parâmetros
- _Right
Um objeto do alocador a ser atribuído a outros como um objeto.
Valor de retorno
Uma referência ao objeto do alocador
Comentários
O operador de atribuição do modelo não fará nada. No entanto, em geral, um objeto do alocador atribuído a outro objeto do alocador deve comparar-lhe igual e permitir a mistura de alocação do objeto e a liberação entre os dois objetos do alocador.
Exemplo
// 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;
}
Requisitos
Cabeçalho: <memória>
Namespace: std