std::scoped_allocator_adaptor::outer_allocator
Aus cppreference.com
< cpp | memory | scoped allocator adaptor
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
definiert in Header <scoped_allocator>
|
||
outer_allocator_type& outer_allocator() |
(1) | (seit C++11) |
const outer_allocator_type& outer_allocator() const |
(2) | (seit C++11) |
Ruft einen Verweis auf den äußeren Allocator verwendet, um dieses Klasse deklarieren .
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.
Renditen 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.
Renditen 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.
Inhaltsverzeichnis |
[Bearbeiten] Parameter
(None)
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.
[Bearbeiten] Rückgabewert
Ein Verweis auf
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.
[Bearbeiten] Ausnahmen
1-2)[Bearbeiten] Siehe auch
erhält einen inner_allocator ReferenzOriginal: 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. (öffentliche Elementfunktion) |