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;

    }

  • 相关阅读:
    无限级分类表设计
    多表连接
    连接(上接子查询那一篇随笔)
    数据库中常用指令
    子查询
    mysql查询表达式解析
    mysql单表删除记录DELETE
    mysql 单表更新记录UPDATE
    七言
    时分秒计算案例
  • 原文地址:https://www.cnblogs.com/sea-stream/p/9816167.html
Copyright © 2011-2022 走看看