C+++string类如何判断字符串为空
2 回答
交互式爱情
TA贡献1712条经验 获得超3个赞
string类是C++STL类之一,有很丰富的接口。
string类为空,实际也就是元素为0个。 可以按照如下方式判断:
1、string类有自己的成员函数empty, 可以用来判断是否为空。
1 2 3 | string s; if(s.empty())//成立则为空 ... |
2、判断字符串长度。如果长度为0,则为空。
1 2 3 | string s; if(s.length()==0)//成立则为空 ... |
3、与空串比较,如果相等则为空。
1 2 3 | string s; if(s=="")//成立则为空 ... |
几种方法中,empty函数是效率最高也是最常用的一种。
千万里不及你
TA贡献1784条经验 获得超9个赞
bool empty() const;
The member function returns true for an empty controlled sequence.
string a;
if(a.empty())
printf("empty");
- 2 回答
- 0 关注
- 2345 浏览
添加回答
举报
0/150
提交
取消