码迷,mamicode.com
首页 > 编程语言 > 详细

C++ vector 实例二

时间:2019-07-21 10:51:47      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:second   tin   iterator   struct   sizeof   sam   use   font   int   

// 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 实例二

标签:second   tin   iterator   struct   sizeof   sam   use   font   int   

原文地址:https://www.cnblogs.com/CodeWorkerLiMing/p/11220304.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!