c++的string类中的empty()函数用于判断字符串是否为空。如果字符串为空,即没有任何字符,则返回true;如果字符串不为空
c++的string类中的empty()函数用于判断字符串是否为空。如果字符串为空,即没有任何字符,则返回true;如果字符串不为空,则返回false。
下面是一个示例代码,演示了empty()函数的用法:
```cpp
#include
#include
int main() {
std::string str1 = "Hello";
std::string str2 = "";
if (str1.empty()) {
std::cout << "str1 is empty" << std::endl;
} else {
std::cout << "str1 is not empty" << std::endl;
}
if (str2.empty()) {
std::cout << "str2 is empty" << std::endl;
} else {
std::cout << "str2 is not empty" << std::endl;
}
return 0;
}
```
输出结果为:
```
str1 is not empty
str2 is empty
```
在上面的示例中,str1不为空,因为它包含了字符"Hello"。而str2为空,因为它没有任何字符。
通过使用empty()函数,我们可以方便地判断一个字符串是否为空,从而根据需要执行相应的操作。
--结束END--
本文标题: C++ String empty()实例讲解
本文链接: https://lsjlt.com/news/420364.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0