中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

C++中string.empty怎么使用

小億
133
2023-07-12 11:34:48
欄目: 編程語言

在C++中,string.empty()是用來判斷一個字符串是否為空的函數。它返回一個bool值,如果字符串為空,則返回true,否則返回false。

以下是使用string.empty()的示例:

#include <iostream>
#include <string>
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不為空,所以str1.empty()返回false。而str2為空,所以str2.empty()返回true。

0
萍乡市| 澎湖县| 阿坝县| 鹤峰县| 通渭县| 申扎县| 临高县| 封开县| 丘北县| 汕尾市| 望都县| 三穗县| 玉田县| 正阳县| 西青区| 彰武县| 邻水| 临洮县| 呼和浩特市| 华宁县| 五峰| 东光县| 辽源市| 新泰市| 崇仁县| 开封市| 武陟县| 平潭县| 正蓝旗| 隆林| 深圳市| 虹口区| 屯留县| 洛南县| 雅安市| 瓦房店市| 饶阳县| 陇川县| 庆安县| 西乌| 济宁市|