std::scoped_allocator_adaptor::outer_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. |
<metanoindex/>
<tbody> </tbody>| 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.
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.
1)
ritorna
static_cast<OuterAlloc&>(*this)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.
2)
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.
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.
Valore di ritorno
Un riferimento a
OuterAllocOriginal:
A reference to
OuterAllocThe 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.
Eccezioni
1-2)
Vedi anche
ottiene un riferimento inner_allocatorOriginal: 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) | |