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

vector 和array的用法

时间:2014-12-06 16:37:59      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   sp   strong   on   div   log   

模板类vector

模板:

1 vector<typename>vt(n_elem);

其中n_elem可以是整型常量,也可以是整形变量。
如:

1 #include<vector>
2 ...
3 using namespace std;
4 vector<int>vi;//大小为0
5 int n;
6 cin>>n;
7 vector<double>vd(n);

 

模板类array(c++11)

1 array<typename,n_elem>arr;

n_elem不能是变量。

1 #include<array>
2 ...
3 using namespace std;
4 array<int ,5>ai;
5 array<double,4>ad;

 

vector 和array的用法

标签:style   blog   ar   color   sp   strong   on   div   log   

原文地址:http://www.cnblogs.com/taoxiuxia/p/4148308.html

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