码迷,mamicode.com
首页 > 其他好文 > 详细

vector and array

时间:2017-09-24 14:32:39      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:mes   类型   names   using   clu   cin   tor   turn   ios   

#include<iostream>
#include<vector>
#include<array>

int main()
{
    using namespace std;

    int SIZE;

    cin >> LEN;

    vector<int> ar(LEN);
    
    array<int,LEN> br ={1,2,3,4,5};
    
    return 0;

};

  vector 类型直接初始化赋值会报错,但是array 可以直接初始化。

vector and array

标签:mes   类型   names   using   clu   cin   tor   turn   ios   

原文地址:http://www.cnblogs.com/TadGuo/p/7587012.html

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