亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

C++中string.empty的用法是什么

c++
小億
160
2023-12-23 09:43:11
欄目: 編程語言

在C++中,string.empty()是一個成員函數,用于檢查一個字符串是否為空。它返回一個bool值,如果字符串為空則返回true,否則返回false。

使用示例:

#include <iostream>
#include <string>

int main() {
    std::string str1 = "";
    std::string str2 = "Hello";

    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 empty
str2 is not empty

在上面的示例中,我們使用empty()函數檢查了兩個字符串的狀態。str1為空字符串,所以empty()函數返回true,而str2不為空,所以empty()函數返回false。

0
莱阳市| 凤台县| 信宜市| 英超| 三穗县| 措勤县| 合山市| 张家口市| 湄潭县| 滁州市| 理塘县| 绥滨县| 大渡口区| 五寨县| 和平县| 大埔区| 青浦区| 沅陵县| 南宁市| 四川省| 镇安县| 元朗区| 尼勒克县| 满洲里市| 寻乌县| 抚松县| 克东县| 长治市| 富平县| 红原县| 鄢陵县| 清徐县| 三原县| 应城市| 石家庄市| 澄城县| 涟源市| 四平市| 陇西县| 桐庐县| 贵州省|