📜  C++ string.empty()函数

📅  最后修改于: 2020-10-21 02:12:43             🧑  作者: Mango

C++ string.empty()

此函数检查字符串是否为空。函数返回布尔值true或false。

句法

考虑一个字符串str。语法为:

str.empty();

参数

该函数不包含任何参数。

返回值

根据条件,它返回布尔值0或1。

例子1

#include
    using namespace std;
     int main()
    {
      string str1;
     if(str1.empty())
    cout<<"String is empty";
    else
    cout<<"String is not empty";
    return 0;}

输出:

String is empty

本示例说明如何使用empty()函数检查字符串是否为空。

例子2

#include
using namespace std;
int main()
{
    string str1="Hello javaTpoint";
            if(str1.empty())
    cout<<"String is empty";
    else
    cout<<"String is not empty";
    return 0;
}

输出:

String is not empty

本示例通过使用empty()函数检查字符串是否为空。