zoukankan      html  css  js  c++  java
  • 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 << '
    ';
    
        // 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 << '
    ';
    
        return 0;
    }
    

      

  • 相关阅读:
    tomcat启动报错host-manager does not exist
    jq对象,js对象,dom对象的转化
    Axure
    css盒子垂直居中
    数组去重个人总结的六种方式
    原生Ajax
    tp5总结(四)
    tp5总结(二)
    tp5总结(三)
    tp5总结(一)
  • 原文地址:https://www.cnblogs.com/CodeWorkerLiMing/p/11220304.html
Copyright © 2011-2022 走看看