std::allocator::allocator
Da cppreference.com.
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
allocator(); |
(1) | |
allocator( const allocator& other ); |
(2) | |
template< class U > allocator( const allocator<U>& other ); |
(3) | |
Costruisce l'allocatore di default. Dal momento che l'allocatore di default è senza stato, i costruttori non hanno alcun effetto visibile.
Original:
Constructs the default allocator. Since the default allocator is stateless, the constructors have no visible effect.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica] Parametri
other | - | un allocatore per costruire con
Original: another allocator to construct with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |