std::allocator
Aus cppreference.com
![]() | 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 <memory> | ||
template<class T > struct allocator; | (1) | |
template<> struct allocator<void>; | (2) | |
Die
std::allocator
Klassen-Template ist die Standardeinstellung Allocator
von allen Standard-Bibliothek Behälter verwendet, wenn kein Benutzer angegebenen allocator ist. Der Standardwert allocator staatenlos ist, das heißt, alle Instanzen der gegebenen allocator austauschbar sind, sind gleich und können Speicher von einem anderen Instanz desselben allocator Typ zugeordnet freigeben .Original:
The
std::allocator
class template is the default Allocator
used by all standard library containers if no user-specified allocator is provided. The default allocator is stateless, that is, all instances of the given allocator are interchangeable, compare equal and can deallocate memory allocated by any other instance of the same allocator type.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.
Spezialisierung für void fehlen die Mitglied typedefs
reference
, const_reference
, size_type
und difference_type
. Diese Spezialisierung erklärt keine Member-Funktionen .Original:
Specialization for void lacks the member typedefs
reference
, const_reference
, size_type
and difference_type
. This specialization declares no member functions.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.
All custom allocators also must be stateless. | (bis C + +11) |
Custom allocators may contain state. Each container or another allocator-aware object stores an instance of the supplied allocator and controls allocator replacement through std::allocator_traits. | (seit C++11) |
Inhaltsverzeichnis |
[Bearbeiten]Mitglied Typen
Type Original: Type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | Definition |
value_type | T |
pointer | T* |
const_pointer | const T* |
reference | T& |
const_reference | const T& |
size_type | std::size_t |
difference_type | std::ptrdiff_t |
rebind | template<class U >struct rebind {typedef allocator<U> other;}; |
[Bearbeiten]Member-Funktionen
schafft eine neue Zuweisung Instanz Original: creates a new allocator instance The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) | |
zerstört sich einen Zuordner Instanz Original: destructs an allocator instance The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) | |
erhält die Adresse eines Objekts, selbst wenn operator& überladen ist (öffentliche Elementfunktion) | |
ordnet initialisierten Speicher Original: allocates uninitialized storage The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) | |
gibt Speicher frei (öffentliche Elementfunktion) | |
liefert den größten unterstützten Zuweisung Größe Original: returns the largest supported allocation size The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) | |
baut ein Objekt in zugewiesenen Lagerstätten Original: constructs an object in allocated storage The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) | |
zerstört sich ein Objekt im zugewiesenen Speicher Original: destructs an object in allocated storage The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) |
[Bearbeiten]Non-Member-Funktionen
vergleicht zwei allocator Instanzen Original: compares two allocator instances The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) |
[Bearbeiten]Siehe auch
(C++11) | liefert Informationen über Allokatoren (Klassen-Template) |
(C++11) | implementiert die Zuweisung über mehrere Ebenen für Container, die in mehrfachen Ebene unterteilt sind (Klassen-Template) |
(C++11) | prüft, ob der angegebene Typ allokatorgestützte Erzeugung unterstützt. (Klassen-Template) |