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

溫馨提示×

c++怎么遍歷vector數組

小億
179
2023-12-12 11:07:32
欄目: 編程語言

C++中可以使用循環來遍歷vector數組。以下是兩種常見的遍歷方式:

  1. 使用for循環遍歷vector數組:
#include <iostream>
#include <vector>

int main() {
    std::vector<int> vec = {1, 2, 3, 4, 5};

    // 使用for循環遍歷vector數組
    for (int i = 0; i < vec.size(); i++) {
        std::cout << vec[i] << " ";
    }

    return 0;
}
  1. 使用迭代器遍歷vector數組:
#include <iostream>
#include <vector>

int main() {
    std::vector<int> vec = {1, 2, 3, 4, 5};

    // 使用迭代器遍歷vector數組
    for (std::vector<int>::iterator it = vec.begin(); it != vec.end(); ++it) {
        std::cout << *it << " ";
    }

    return 0;
}

無論是使用for循環還是使用迭代器,都可以依次訪問vector數組中的每個元素。

0
上蔡县| 岚皋县| 阿图什市| 荥阳市| 甘洛县| 吉木乃县| 财经| 腾冲县| 定边县| 莱州市| 沂南县| 高碑店市| 阳原县| 宿迁市| 安新县| 县级市| 南投市| 卢湾区| 津市市| 成安县| 南平市| 富民县| 辛集市| 江都市| 蓬溪县| 陆良县| 浦北县| 武安市| 西盟| 承德市| 肃北| 紫金县| 封丘县| 宁陵县| 循化| 呼和浩特市| 德惠市| 武义县| 阿巴嘎旗| 柯坪县| 辉县市|