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

#include <boost/array.hpp>

时间:2016-08-13 06:35:35      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:

 

Boost的array

 

 1 #include <iostream>
 2 #include <boost/array.hpp>
 3 
 4 void main()
 5 {
 6     boost::array<int, 10>myarray = { 1,2,3,4,5,6,7,8,9,10 };
 7 
 8     boost::array<int, 10>::iterator ibegin = myarray.begin();
 9     boost::array<int, 10>::iterator iend = myarray.end();
10 
11     for (; ibegin != iend; ibegin++)
12     {
13         std::cout << *ibegin << std::endl;
14     }
15 }

 

#include <boost/array.hpp>

标签:

原文地址:http://www.cnblogs.com/denggelin/p/5767055.html

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