allocator::operator=
Affecte un objet d'allocation à un autre objet d'allocation.
template<class Other>
allocator<Type>& operator=(
const allocator<Other>& _Right
);
Paramètres
- _Right
Objet d'allocation à affecter aux autres ces objets.
Valeur de retour
Référence à l'objet d'allocation
Notes
L'opérateur d'affectation du modèle n'a aucun effet. En général, toutefois un objet d'allocation affecté à un autre objet d'allocation doit comparer égale à utiliser et permettre l'entremêlement de l'allocation d'objet et de entre des objets d'allocation.
Exemple
// 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;
}
Configuration requise
En-tête: <mémoire>
Espace de noms : std