basic_string::empty
Tests, que la chaîne contienne des caractères ou pas.
bool empty( ) const;
Valeur de retour
true si l'objet String ne contient pas de caractères ; false s'il possède au moins un caractère.
Notes
La fonction membre est l'équivalent du == 0 de taille .
Exemple
// basic_string_empty.cpp
// compile with: /EHsc
#include <string>
#include <iostream>
int main() {
using namespace std;
bool b1, b2;
string str1 ("Hello world");
cout << "The original string object str1 is: " << str1 << endl;
b1 = str1.empty();
if (b1)
cout << "The string object str1 is empty." << endl;
else
cout << "The string object str1 is not empty." << endl;
cout << endl;
// An example of an empty string object
string str2;
b2 = str2.empty();
if (b2)
cout << "The string object str2 is empty." << endl;
else
cout << "The string object str2 is not empty." << endl;
}
Sortie
The original string object str1 is: Hello world
The string object str1 is not empty.
The string object str2 is empty.
Configuration requise
en-tête : <string>
l'espace de noms : DST