◐ Shell
clean mode source ↗

std::vector::reserve – cppreference.com

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.

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.

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.

Siehe auch

gibt die Anzahl der Elemente, die in derzeit zugewiesenen Speicher gehalten werden kann

Original:

returns the number of elements that can be held in currently 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) [edit]