std::basic_string::resize
Aus cppreference.com
< cpp | string | basic string
![]() |
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. |
void resize( size_type count ); |
(1) | |
void resize( size_type count, CharT ch ); |
(2) | |
Ändert die Zeichenfolge
count
Zeichen enthalten .Original:
Resizes the string to contain
count
characters.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.
Wenn die aktuelle Größe kleiner als
count
werden zusätzliche Zeichen angehängt .Original:
If the current size is less than
count
, additional characters are appended.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.
Wenn die aktuelle Größe ist größer als
count
, wird die Zeichenfolge in der ersten count
Elemente reduziert .Original:
If the current size is greater than
count
, the string is reduced to its first count
elements.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.
Die erste Version initialisiert neue Zeichen CharT(), initialisiert die zweite Version neue Charaktere
ch
.Original:
The first version initializes new characters to CharT(), the second version initializes new characters to
ch
.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
count | - | neue Größe des Strings
Original: new size of the string The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
ch | - | Charakter, um die neuen Zeichen mit initialisieren
Original: character to initialize the new characters with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[Bearbeiten] 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.
[Bearbeiten] Komplexität
linear in der Größe der Zeichenfolge
Original:
linear in the size of the string
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] Siehe auch
gibt die Anzahl Zeichen zurück (öffentliche Elementfunktion) |