boost::array
很遗憾,STL标准容器中并没有数组容器, 对于一组固定大小的数据, 用vector并不一定比Array合适,vector毕竟是大小可变的。而且个人认为,这样会使概念不够清晰,毕竟Array和vector概念上并不是完全等同的。
boost::array就是数组的容器类实现,他完全兼容STL,很有希望被加入下一代的C++标准中。Boost::array内部仍然是固定长度,但是却拥有STL容器兼容的接口,这样就使的Boost::array能够支持STL中的算法,能够和STL中的许多组建协同工作。
例子程序1:
#include <iostream>
#include <algorithm>
#include <functional>
#include <boost/array.hpp>
using namespace std;
using namespace boost;
template <class T>
inline void print_elements (const T& coll, const char* optcstr="")
{
typename T::const_iterator pos;
std::cout << optcstr;
for (pos=coll.begin(); pos!=coll.end(); ++pos) {
std::cout << *pos << ' ';
}
std::cout << std::endl;
}
int main()
{
// create and initialize array
array<int,10> a = { { 1, 2, 3, 4, 5 } };
print_elements(a);
// modify elements directly
for (unsigned i=0; i<a.size(); ++i) {
++a[i];
}
print_elements(a);
// change order using an STL algorithm
reverse(a.begin(),a.end());
print_elements(a);
// negate elements using STL framework
transform(a.begin(),a.end(), // source
a.begin(), // destination
negate<int>()); // operation
print_elements(a);
return 0;
}
运行结果:
1 2 3 4 5 0 0 0 0 0
2 3 4 5 6 1 1 1 1 1
1 1 1 1 1 6 5 4 3 2
-1 -1 -1 -1 -1 -6 -5 -4 -3 -2
例子程序2:
#include <string>
#include <iostream>
#include <boost/array.hpp>
template <class T>
void print_elements (const T& x)
{
for (unsigned i=0; i<x.size(); ++i) {
std::cout << " " << x[i];
}
std::cout << std::endl;
}
int main()
{
// create array of four seasons
boost::array<std::string,4> seasons = {
{ "spring", "summer", "autumn", "winter" }
};
// copy and change order
boost::array<std::string,4> seasons_orig = seasons;
for (unsigned i=seasons.size()-1; i>0; --i) {
std::swap(seasons.at(i),seasons.at((i+1)%seasons.size()));
}
std::cout << "one way: ";
print_elements(seasons);
// try swap()
std::cout << "other way: ";
std::swap(seasons,seasons_orig);
print_elements(seasons);
// try reverse iterators
std::cout << "reverse: ";
for (boost::array<std::string,4>::reverse_iterator pos
=seasons.rbegin(); pos<seasons.rend(); ++pos) {
std::cout << " " << *pos;
}
std::cout << std::endl;
return 0; // makes Visual-C++ compiler happy
}
运行结果:
one way: winter spring summer autumn
other way: spring summer autumn winter
reverse: winter autumn summer spring
分享到:
相关推荐
3. **读写操作**: `boost::asio::serialport`提供了读写数据的方法。同步读写操作如下: ```cpp std::vector<char> buffer(1024); size_t bytes_transferred = serial.read_some(buffer); // 处理读取的数据 ...
Boost程序库完全开发指南:深入C++“准”标准库+Boost程序库完全开发指南:深入C++“准”标准库+Boost程序库完全开发指南:深入C++“准”标准库+Boost程序库完全开发指南:深入C++“准”标准库+Boost程序库完全开发...
Boost程序库完全开发指南:深入C++_准_标准库 第3版 中文.part2
本文实例讲述了C++之boost::array的用法,分享给大家供大家参考。具体如下: 代码如下:#include #include #include <boost> #include using namespace std; int main() { boost::array<int> ...
boost::asio::serial下6个工程演示多种串口读取写入方式方法,包含simple,with_timeout,async,callback,qt_integration,stream 等多个工程演示多种方式读取,写入串口,char,string ,buffer[]等多种数据格式。
3. **预处理Boost**:使用`b2`或`bjam`工具(Boost.Build系统的一部分)进行配置。这一步会根据你的需求(例如,选择动态库还是静态库,多线程支持等)来定制编译选项。 4. **编译和构建**:执行编译命令,如`b2 --...
在IT行业中,Boost库是一个非常重要的C++工具集,它为C++标准库提供了许多扩展功能,涵盖了诸如并发、文件系统、智能指针、正则表达式等多个领域。而SSL(Secure Sockets Layer)和其后续版本TLS(Transport Layer ...
《C++ Boost::array 用法详解》 在C++编程中,Boost库是一个非常重要的辅助工具,其中的Boost::array容器是针对固定大小数组的一种高效实现。它提供了类似于STL容器的一些功能,但又避免了动态数组如std::vector的...
《Boost程序库完全开发指南:深入C++标准库 第3版》是一本专注于C++编程者深入理解Boost库和C++标准库的重要参考资料。Boost库是C++社区中广泛使用的开源库,它提供了大量高质量、经过严格测试的C++模板类和函数,...
3. **兼容性好**:Boost库能够跨平台运行,无论是Windows、Linux还是Mac OS等操作系统,都能很好地支持。 4. **易于集成**:由于Boost库是纯C++实现的,因此非常容易集成到现有的项目中。 5. **社区活跃**:拥有庞大...
3. **规范化**: 库提供URL规范化功能,确保URL遵循RFC 3986标准,如处理相对路径、规范化路径分段、转换百分比编码等。 4. **查询参数处理**: Boost.URL库支持处理URL查询参数,可以添加、删除、获取参数值,甚至...
Boost程序库完全开发指南:深入C++_准_标准库 第3版 中文
BOOST程序库完全开发指南:深入C++“准”标准库(第3版).pdf
boost::add_edge(s, t, 3, g).second; boost::add_edge(s, u, 1, g).second; boost::add_edge(u, v, 2, g).second; boost::add_edge(u, t, 2, g).second; boost::add_edge(t, v, 1, g).second; boost::add_...
Boost程序库完全开发指南:深入C++“准”标准库(第3版).pdf
《Boost程序库完全开发指南:深入C++准标准库 第3版》是一本全面解析Boost库的权威书籍,旨在帮助C++开发者深入了解和利用Boost库提高编程效率和代码质量。Boost库是C++社区广泛认可的开源库,它包含了许多为C++标准...