std::basic_string::empty
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> bool empty() const; |
||
Prüft, ob der String hat keine Zeichen, dh ob
begin() == end() .Original:
Checks if the string has no characters, i.e. whether
begin() == end().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
(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.
Rückgabewert
true wenn die Zeichenfolge leer ist, false andersOriginal:
true if the string is empty, false otherwiseThe 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.
Komplexität
Constant
Original:
Constant
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.
