Espaços nominais
Variantes
Acções

operator==,!=<div class="t-tr-text">(Std :: alocador)<div class="t-tr-dropdown"><div><div><div class="t-tr-dropdown-arrow-border"></div><div class="t-tr-dropdown-arrow"></div><div class="t-tr-dropdown-h">Original:</div><div class="t-tr-dropdown-orig">(std::allocator)</div><div class="t-tr-dropdown-notes">The text has been machine-translated via [http://translate.google.com Google Translate].<br/> You can help to correct and verify the translation. Click [http://en.cppreference.com/w/Cppreference:MachineTranslations here] for instructions.</div></div></div></div></div>

Da cppreference.com
< cpp‎ | memory‎ | allocator

 
 
Gerenciamento de memória dinâmica
Gerenciamento de memória de baixo nível
Alocadores
Original:
Allocators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Uninitialized armazenamento
Original:
Uninitialized storage
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Ponteiros inteligentes
Original:
Smart pointers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
(obsoleta)
(C++11)
Apoio a coleta de lixo
Original:
Garbage collection support
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Diversos
Original:
Miscellaneous
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
C Library
Original:
C Library
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
std::allocator
Funções de membro
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
allocator::allocator
allocator::~allocator
allocator::address
allocator::allocate
allocator::deallocate
allocator::max_size
allocator::construct
allocator::destroy
Não-membros funções
Original:
Non-member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
operator==operator!=
 
template<class T1, class T2 >
bool operator==(const allocator<T1>& lhs, const allocator<T2>& rhs );
template<class T1, class T2 >
bool operator!=(const allocator<T1>& lhs, const allocator<T2>& rhs );
Compara dois alocadores padrão. Desde alocadores padrão são apátridas, os alocadores de padrão dois são sempre iguais.
Original:
Compares two default allocators. Since default allocators are stateless, two default allocators are always equal.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1)
true retornos
Original:
Returns true
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
false retornos
Original:
Returns false
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Parâmetros

lhs, rhs -
alocadores padrão para comparar
Original:
default allocators to compare
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Valor de retorno

1)true
2)false

[editar]Exceções

noexcept specification:  
noexcept
  (desde C++11)
close