在c++中函数empty()怎么使用,判断字符串是否为空,请问怎么判断??

2024-10-29 16:11:32
推荐回答(2个)
回答1:

string s = "";if (s.empty())
{
cout <<
"字符串为空。。";
}
else
{
cout << "字符串不为空。。";
}

回答2:

#include
#include
#include
using namespace std;
int main()//主函数没有返回值
{
string s="1";
if(s.empty())
cout<<"为空"<else
cout<<"非空"<system("pause");//停留屏幕,便于观察结果
return 0;
}

//empty()是String类的方法,只能被调用