C++ vector 实例二

Posted codeworkerliming

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ vector 实例二相关的知识,希望对你有一定的参考价值。

// constructing vectors
#include <iostream>
#include <vector>

int main ()

    // constructors used in the same order as described above:
    std::vector<int> first;                                // empty vector of ints
    std::vector<int> second (4, 100);                      // four ints with value 100
    std::vector<int> third (second.begin(), second.end()); // iterating through second
    std::vector<int> fourth (third);                       // a copy of third

    std::cout << "The contents of second are:";
    for (std::vector<int>::iterator it = second.begin(); it != second.end(); ++it)
    
        std::cout << ‘ ‘ << *it;
    
    std::cout << ‘\n‘;

    // the iterator constructor can also be used to construct from arrays:
    int myints[] = 16, 2, 77, 29;
    std::vector<int> fifth (myints, myints + sizeof(myints) / sizeof(int) );

    std::cout << "The contents of fifth are:";
    for (std::vector<int>::iterator it = fifth.begin(); it != fifth.end(); ++it)
    
        std::cout << ‘ ‘ << *it;
    
    std::cout << ‘\n‘;

    return 0;

  

以上是关于C++ vector 实例二的主要内容,如果未能解决你的问题,请参考以下文章

C++ vector 动态二维数组 长度不一样 实例

C++ 二维 map vector 赋值 遍历 实例 降序

C++ 二维 map vector 赋值 遍历 实例 降序

c++向量构造函数实例化冲突

将派生类中的对象插入到所述对象的另一个实例中(使用 vector.insert 函数)C++

当函数返回它时,C++ 向量实例是可操作的