91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c++怎么將兩個字符串連接起來

c++
小億
189
2023-12-07 00:44:58
欄目: 編程語言

在C++中,可以使用+操作符或+=操作符將兩個字符串連接起來。下面是使用這兩種方法的示例代碼:

#include <iostream>
#include <string>

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

    // 使用+操作符
    std::string result = str1 + str2;
    std::cout << "Result using + operator: " << result << std::endl;

    // 使用+=操作符
    str1 += str2;
    std::cout << "Result using += operator: " << str1 << std::endl;

    return 0;
}

輸出:

Result using + operator: Hello World
Result using += operator: Hello World

在上面的示例中,我們先定義了兩個字符串str1str2,然后使用+操作符將它們連接起來并將結果賦值給result字符串。接下來,我們使用+=操作符將str2連接到str1后面。最后,我們分別使用++=操作符的結果輸出連接后的字符串。

0
邵武市| 丹东市| 尚义县| 定安县| 贡觉县| 许昌县| 慈溪市| 黄陵县| 崇州市| 永川市| 偏关县| 陆川县| 贵定县| 道真| 饶河县| 年辖:市辖区| 阳朔县| 佛冈县| 德保县| 洞口县| 长沙县| 浙江省| 伊金霍洛旗| 宿迁市| 乌兰察布市| 察哈| 迁安市| 浪卡子县| 湄潭县| 获嘉县| 晋城| 乐亭县| 兴文县| 安乡县| 平定县| 铜梁县| 乐清市| 增城市| 民丰县| 乌审旗| 鹰潭市|