basic_string::empty
測試字串是否包含字元。
bool empty( ) const;
傳回值
true 字串,如果物件不包含字元, false ,則至少有一個字元。
備註
成員函式的 大小 == 0 相當於。
範例
// 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;
}
Output
The original string object str1 is: Hello world
The string object str1 is not empty.
The string object str2 is empty.
需求
標題: <string>
命名空間: std