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

溫馨提示×

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
白山市| 南和县| 密山市| 富民县| 安阳县| 遂平县| 枣庄市| 正蓝旗| 漯河市| 遵义县| 南江县| 永寿县| 迁安市| 海原县| 桂东县| 璧山县| 武功县| 广东省| 博爱县| 四会市| 延吉市| 湘阴县| 双鸭山市| 和静县| 鲁甸县| 鞍山市| 商洛市| 霍山县| 梓潼县| 高陵县| 英吉沙县| 资中县| 北流市| 盐津县| 杭锦后旗| 白城市| 开封市| 平顶山市| 南木林县| 麟游县| 渝北区|