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

溫馨提示×

C++中字符串如何定義與使用

c++
小億
117
2024-03-26 16:17:00
欄目: 編程語言

在C++中,字符串可以通過標準庫中的std::string類來定義和使用。以下是一些示例代碼:

  1. 定義一個字符串變量并初始化:
#include <iostream>
#include <string>

int main() {
    std::string str = "Hello, World!";
    std::cout << str << std::endl;
    return 0;
}
  1. 字符串拼接:
#include <iostream>
#include <string>

int main() {
    std::string str1 = "Hello, ";
    std::string str2 = "World!";
    std::string result = str1 + str2;
    std::cout << result << std::endl;
    return 0;
}
  1. 獲取字符串長度:
#include <iostream>
#include <string>

int main() {
    std::string str = "Hello, World!";
    std::cout << "Length of string: " << str.length() << std::endl;
    return 0;
}
  1. 字符串查找和替換:
#include <iostream>
#include <string>

int main() {
    std::string str = "Hello, World!";
    size_t found = str.find("World");
    if (found != std::string::npos) {
        str.replace(found, 5, "Universe");
    }
    std::cout << str << std::endl;
    return 0;
}
  1. 字符串比較:
#include <iostream>
#include <string>

int main() {
    std::string str1 = "Hello";
    std::string str2 = "Hello";
    if (str1 == str2) {
        std::cout << "Strings are equal." << std::endl;
    } else {
        std::cout << "Strings are not equal." << std::endl;
    }
    return 0;
}

這些示例展示了如何定義、初始化、操作和比較字符串。通過使用std::string類,可以方便地處理字符串操作。

0
美姑县| 平安县| 锡林浩特市| 望奎县| 山东省| 进贤县| 衡东县| 正定县| 嵩明县| 灌南县| 申扎县| 启东市| 丰都县| 化德县| 屏南县| 安康市| 兰坪| 烟台市| 东方市| 肇源县| 齐河县| 红桥区| 望江县| 明溪县| 惠东县| 桃源县| 常德市| 滁州市| 巴里| 壶关县| 屯留县| 保亭| 南丹县| 五河县| 泊头市| 马山县| 庆安县| 什邡市| 九台市| 永靖县| 霍邱县|