C++中empty()函数的使用
C++中empty()作为判断容器是否为空的函数;string s;if (s.empty()){cout << “字符串为空”;}else{cout << "字符串不为空";}
·
C++中empty()作为判断容器是否为空的函数;
#include <iostream>
int main() {
std::string s = "";
if (s.empty()) {
std::cout << "字符串为空" << std::endl;
}
else {
std::cout << "字符串不为空" << std::endl;
}
}
更多推荐
已为社区贡献1条内容
所有评论(0)