std::vector::reserve
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> void reserve( size_type size ); |
||
Legt die Kapazität des Behälters, um mindestens
size. Neuer Speicher zugewiesen wird, wenn notwendig . Original:
Sets the capacity of the container to at least
size. New storage is allocated if necessary. 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
| size | - | neue Kapazität des Behälters
Original: new capacity of the container 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
std::length_error if size > max_size().
Komplexität
linear in der Größe des Behälters
Original:
linear in the size of the container
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.
