zoukankan      html  css  js  c++  java
  • c++ 指定长度容器元素的拷贝(copy_n)

    #include <iostream>     // cout

    #include <algorithm>    // copy

    #include <vector>       // vector

    using namespace std;

    int main () {

        int myints[]={10,20,30,40,50,60,70};

        vector<int> myvector;

        

        myvector.resize(2);   // allocate space for 7 elements

        

        copy_n ( myints, 5, myvector.begin() );

        

        cout << "myvector contains:";

        for (vector<int>::iterator it = myvector.begin(); it!=myvector.end(); ++it)

            cout << ' ' << *it;

        

        cout << ' ';

        

        return 0;

    }

  • 相关阅读:
    进行代码复审训练
    源代码管理工具调查
    软工作业PSP与单元测试训练
    P18 第四题
    开学第一课
    进行代码复审训练
    源代码管理工具调查
    软工 任务2
    软工课后作业01 P18第四题
    课堂作业1--自我介绍
  • 原文地址:https://www.cnblogs.com/sea-stream/p/9816167.html
Copyright © 2011-2022 走看看