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

溫馨提示×

string數組如何添加元素

小億
592
2023-12-27 21:48:17
欄目: 編程語言

要向string數組添加元素,可以使用數組的push()方法或直接通過索引賦值的方式。

使用push()方法:

#include <iostream>
#include <string>
#include <vector>

int main() {
    std::vector<std::string> myArray;

    myArray.push_back("Hello");
    myArray.push_back("World");

    for (std::string element : myArray) {
        std::cout << element << " ";
    }

    return 0;
}

直接通過索引賦值:

#include <iostream>
#include <string>

int main() {
    std::string myArray[2];

    myArray[0] = "Hello";
    myArray[1] = "World";

    for (std::string element : myArray) {
        std::cout << element << " ";
    }

    return 0;
}

無論使用哪種方法,都可以向string數組添加元素。

0
闵行区| 长沙县| 湄潭县| 盐城市| 泗水县| 海盐县| 清镇市| 蒙自县| 枣强县| 离岛区| 秀山| 大兴区| 赤城县| 海丰县| 西城区| 襄樊市| 木里| 克东县| 紫金县| 太白县| 凤山市| 岢岚县| 舒兰市| 静安区| 宜兴市| 涡阳县| 绥芬河市| 鸡东县| 瑞昌市| 开化县| 奈曼旗| 兴业县| 亳州市| 湖口县| 盐城市| 西盟| 阿图什市| 丰宁| 德化县| 河源市| 宁津县|