#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 != arTest.end(); ++pos)
{
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(),arTest.end());
cout<<"---------------------------------"<<endl;
for (BOOST_AUTO(pos,arTest.begin()); pos != arTest.end(); ++pos)
{
cout<<*pos<<endl; //BOOST_AUTO 自动将pos 推到为int* 类型 即:int*pos。
}
return EXIT_SUCCESS;
}
#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 != arTest.end(); ++pos)
{
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(),arTest.end());
cout<<"---------------------------------"<<endl;
for (BOOST_AUTO(pos,arTest.begin()); pos != arTest.end(); ++pos)
{
cout<<*pos<<endl; //BOOST_AUTO 自动将pos 推到为int* 类型 即:int*pos。
}
return EXIT_SUCCESS;
}