📅  最后修改于: 2020-10-21 02:12:43             🧑  作者: Mango
此函数检查字符串是否为空。函数返回布尔值true或false。
考虑一个字符串str。语法为:
str.empty();
该函数不包含任何参数。
根据条件,它返回布尔值0或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()函数检查字符串是否为空。
#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()函数检查字符串是否为空。