Boost学习笔记(⼆)------boost::array数组的使⽤#include <boost/array.hpp>
#include <boost/typeof/typeof.hpp>
using namespace std;
using namespace boost;
int main(int argc, _TCHAR* argv[])
{
/*
boost::array  和普通标准数组⼀样,但是不具备std::vector 的动态变动数组容量的功能,使⽤的时候要注意
*/
boost::array<int,10> arTest;  //⼀个⼤⼩为10的int数组
arTest[0] = 1;                //调⽤operator[]操纵
arTest.back() = 10;            //back()访问最后⼀个元素
assert(arTest[arTest.max_size() -1] == 10);
arTest.assign(888);//数组所有元素赋值为888
/*
void assign (const T& value) { fill ( value ); }    // A synonym for fill
void fill  (const T& value)
{
std::fill_n(begin(),size(),value);
}
*/
for (BOOST_AUTO(pos,arTest.begin()); pos != d(); ++pos)
typeof array
{
cout<<*pos<<endl;
}
int *p = arTest.c_array();  //返回原始数据指针  T* c_array() { return elems; }
if (p != NULL)
{
*(p+4) = 280;
cout<<arTest[4]<<endl;
}
arTest.at(8) = 999;
sort(arTest.begin(),d());
cout<<"---------------------------------"<<endl;
for (BOOST_AUTO(pos,arTest.begin()); pos != d(); ++pos)
{
cout<<*pos<<endl; //BOOST_AUTO  ⾃动将pos 推到为int*  类型  即:int*pos。
}
return EXIT_SUCCESS;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。