std::scoped_allocator_adaptor::outer_allocator
Da cppreference.com.
< cpp | memory | scoped allocator adaptor
![]() |
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. |
Elemento definito nell'header <scoped_allocator>
|
||
outer_allocator_type& outer_allocator() |
(1) | (dal C++11) |
const outer_allocator_type& outer_allocator() const |
(2) | (dal C++11) |
Ottiene un riferimento al allocatore esterno utilizzato per dichiarare questa classe.
1) Original:
Obtains a reference to the outer allocator used to declare this class.
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.
ritorna static_cast<OuterAlloc&>(*this)
2) Original:
returns static_cast<OuterAlloc&>(*this)
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.
ritorna static_cast<const OuterAlloc&>(*this)
Original:
returns static_cast<const OuterAlloc&>(*this)
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.
Indice |
[modifica] Parametri
(Nessuno)
Original:
(none)
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] Valore di ritorno
Un riferimento a
OuterAlloc
Original:
A reference to
OuterAlloc
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] Eccezioni
1-2)[modifica] Vedi anche
ottiene un riferimento inner_allocator Original: obtains an inner_allocator referenceThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (metodo pubblico) |