码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 数组

时间:2015-04-07 11:51:06      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

std::vector 是矢量数组,可以自动增长,头文件:#include <vector>

std::array  C++11中新型容器,需要指定数组的长度,头文件:#include <array>。

 1     vector<int> vInts;
 2     for(int i=0;i<10;i++)
 3     {
 4         vInts.push_back(i);
 5     }
 6     for(auto vInt:vInts)
 7     {        
 8         cout<<vInt<<endl;
 9     }
10     cout<<"----------"<<endl;    
11     array<int,10> items = {1,2,3,4,5};
12     cout<<"items size:"<<items.size()<<endl;
13     for(auto item:items)
14     {        
15         cout<<item<<endl;
16     }

 

C++ 数组

标签:

原文地址:http://www.cnblogs.com/sunqin/p/4397761.html

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