string s = "";if (s.empty())
{
cout <<
"字符串为空。。";
}
else
{
cout << "字符串不为空。。";
}
#include
#include
#include
using namespace std;
int main()//主函数没有返回值
{
string s="1";
if(s.empty())
cout<<"为空"<
cout<<"非空"<
return 0;
}
//empty()是String类的方法,只能被调用