std::scoped_allocator_adaptor::deallocate
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. |
<metanoindex/>
<tbody> </tbody>| definiert in Header <scoped_allocator>
|
||
void deallocate( pointer p, size_type n ) |
(seit C++11) | |
Verwendet die äußeren allocator, um die Speicherung von
p referenziert freigeben, indem std::allocator_traits<OuterAlloc>::deallocate(outer_allocator(), p, n)Original:
Uses the outer allocator to deallocate the storage referenced by
p, by calling std::allocator_traits<OuterAlloc>::deallocate(outer_allocator(), p, n)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.
Parameter
| p | - | Zeiger auf den zuvor reservierten Speicher
Original: pointer to the previously allocated memory The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| n | - | die Anzahl der Objekte, für die der Speicher zugeordnet wurde
Original: the number of objects for which the memory was allocated The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Rückgabewert
(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.
Ausnahmen
Siehe auch
| gibt Speicher frei (öffentliche Elementfunktion of std::allocator)
| |
[statisch] |
freigibt Speicher mit der Zuweisung Original: deallocates storage using the allocator The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (public static Elementfunktion of std::allocator_traits)
|