原文地址:http://cjbskysea.blogbus.com/logs/61808617.html

1.boost::any

boost::any是一种通用的数据类型,可以将各种类型包装后统一放入容器内,最重要的它是类型安全的。有点象COM里面的variant。

使用方法:

any::type() 返回包装的类型

any_cast可用于any到其他类型的转化

  1. #include <boost/any.hpp>
  2. void test_any()
  3. {
  4. typedef std::vector<boost::any> many;
  5. many a;
  6. a.push_back(2);
  7. a.push_back(string("test"));
  8. for(unsigned int i=0;i<a.size();++i)
  9. {
  10. cout<<a[i].type().name()<<endl;
  11. try
  12. {
  13. int result = any_cast<int>(a[i]);
  14. cout<<result<<endl;
  15. }
  16. catch(boost::bad_any_cast & ex)
  17. {
  18. cout<<"cast error:"<<ex.what()<<endl;
  19. }
  20. }
  21. }

2.boost::array

boost::array仅仅是对数组一层薄薄的封装,提供跟各种算法配合的iterator,使用方法很简单。注意:可以使用{}来初始化array,因为array所有的成员变量都是public的。

  1. #include <boost/array.hpp>
  2. void test_array()
  3. {
  4. array<int,10> ai = {1,2,3};
  5. for(size_t i=0;i<ai.size();++i)
  6. {
  7. cout<<ai[i]<<endl;
  8. }
  9. }

3.boost::lexical_cast

lexical_cast用于将字符串转换成各种数字类型(int,float,short etc.)。

  1. #include <boost/lexical_cast.hpp>
  2. void test_lexical_cast()
  3. {
  4. int i = boost::lexical_cast<int>("123");
  5. cout << i << endl;
  6. }

4.boost::format

boost::format是用于替代c里面的sprintf,优点是类型安全,不会因为类型和参数不匹配而导致程序崩溃了,而且还可以重复使用参数。

  1. #include <boost/format.hpp>
  2. void test_format()
  3. {
  4. cout <<
  5. boost::format("writing %1%,  x=%2% : %3%-th try")
  6. % "toto"
  7. % 40.23
  8. % 50
  9. <<endl;
  10. format f("a=%1%,b=%2%,c=%3%,a=%1%");
  11. f % "string" % 2 % 10.0;
  12. cout << f.str() << endl;
  13. }

5.boost::tokenizer

boost::tokenizer是用于切割字符串的,类似于Java里面的StringTokenizer。

  1. #include <boost/tokenizer.hpp>
  2. void test_tokenizer()
  3. {
  4. string s("This is  , a ,test!");
  5. boost::tokenizer<> tok(s);
  6. for(tokenizer<>::iterator beg=tok.begin(); beg!=tok.end();++beg)
  7. {
  8. cout << *beg << " ";
  9. }
  10. }

6.boost::thread

boost::thread是为了提供跨平台的thread机制。利用boost::function来完成委托。

  1. #include <boost/thread.hpp>
  2. void mythread()
  3. {
  4. cout<<"hello,thread!"<<endl;
  5. }
  6. void test_thread()
  7. {
  8. boost::function< void () > f(mythread);
  9. boost::thread t(f);
  10. t.join();
  11. cout<<"thread is over!"<<endl;
  12. }

7.boost::serialization

boost::serialization提供object的序列化功能。而且提供好几种序列化的格式,比如text,binary,xml。

  1. #include <boost/archive/text_oarchive.hpp>
  2. #include <boost/archive/text_iarchive.hpp>
  3. #include <boost/archive/xml_oarchive.hpp>
  4. void test_serialization()
  5. {
  6. boost::archive::text_oarchive to(cout , boost::archive::no_header);
  7. int i = 10;
  8. string s = "This is a test ";
  9. to & i;
  10. to & s;
  11. ofstream f("test.xml");
  12. boost::archive::xml_oarchive xo(f);
  13. xo & BOOST_SERIALIZATION_NVP(i) & BOOST_SERIALIZATION_NVP(s);
  14. boost::archive::text_iarchive ti(cin , boost::archive::no_header);
  15. ti & i & s;
  16. cout <<"i="<< i << endl;
  17. cout <<"s="<< s << endl;
  18. }

8.boost::function

boost::function就是所谓的泛函数,能够对普通函数指针,成员函数指针,functor进行委托,达到迟调用的效果。

  1. #include <boost/function.hpp>
  2. int foo(int x,int y)
  3. {
  4. cout<< "(foo invoking)x = "<<x << " y = "<< y <<endl;
  5. return x+y;
  6. }
  7. struct test
  8. {
  9. int foo(int x,int y)
  10. {
  11. cout<< "(test::foo invoking)x = "<<x << " y = "<< y <<endl;
  12. return x+y;
  13. }
  14. };
  15. void test_function()
  16. {
  17. boost::function<int (int,int)> f;
  18. f = foo;
  19. cout << "f(2,3)="<<f(2,3)<<endl;
  20. test x;
  21. /*f = std::bind1st(std::mem_fun(&test::foo), &x);*/
  22. boost::function<int (test*,int,int)> f2;
  23. f2 = &test::foo;
  24. cout << "f2(5,3)="<<f2(&x,5,3)<<endl;
  25. }

9.boost::shared_ptr

boost::shared_ptr就是智能指针的实现,不象std::auto_ptr,它是可以stl的容器一起使用的,非常的方便。

  1. #include <boost/shared_ptr.hpp>
  2. class Shared
  3. {
  4. public:
  5. Shared()
  6. {
  7. cout << "ctor() called"<<endl;
  8. }
  9. Shared(const Shared & other)
  10. {
  11. cout << "copy ctor() called"<<endl;
  12. }
  13. ~Shared()
  14. {
  15. cout << "dtor() called"<<endl;
  16. }
  17. Shared & operator = (const Shared & other)
  18. {
  19. cout << "operator =  called"<<endl;
  20. }
  21. };
  22. void test_shared_ptr()
  23. {
  24. typedef boost::shared_ptr<Shared> SharedSP;
  25. typedef vector<SharedSP> VShared;
  26. VShared v;
  27. v.push_back(SharedSP(new Shared()));
  28. v.push_back(SharedSP(new Shared()));
  29. }

转载于:https://www.cnblogs.com/wangkangluo1/archive/2011/07/19/2110746.html

boost常用库案例相关推荐

  1. Python处理时空数据常用库案例及练习

    本文完整代码.数据集下载.在线运行可以访问这个链接:时空数据Python常用包案例 配套习题与答案可以访问这个链接:时空数据Python常用包案例 - 实操练习题(附答案) Python处理时空数据会 ...

  2. Boost正则表达式库regex常用search和match示例 - 编程语言 - 开发者第2241727个问答

    Boost正则表达式库regex常用search和match示例 - 编程语言 - 开发者第2241727个问答 Boost正则表达式库regex常用search和match示例 发表回复 Boost ...

  3. boost正则库匹配ASII编码的中文、全角字符示例

    首先,boost正则库(regex)不支持形如 [0-9] 这样的表达式,貌似会崩溃. 现在查网上正则匹配中文的例子,都是讲用 \uFF00-\uFFFF ; 拜托,\u是unicode编码,能用于我 ...

  4. Python快速编程入门#学习笔记02# |第十章 :Python计算生态与常用库(附.小猴子接香蕉、双人乒乓球小游戏源码)

    全文目录 学习目标 1. Python计算生态概述 1.1 Python计算生态概述 2. Python生态库的构建与发布 2.1 模块的构建与使用 * 2.1.1第三方库/模块导入的格式 2.2 包 ...

  5. boost网络库开发

    一.前言 网络库是从事C++开发最基础.最核心.最常用的一个库,所有的协议都是建立在一个稳定高效的网络库之上的,所以对于c++程序员来说它是必不可少且非常非常重要的一个核心组件,我们可以使用网络库做任 ...

  6. Boost C++ 库

    http://zh.highscore.de/cpp/boost/frontpage.html Boost C++ 库 目录 第 1 章 简介 第 2 章 智能指针 第 3 章 函数对象 第 4 章  ...

  7. python常用类库_Python常用库

    Python常用库 一.time:时间处理模块 import time 1.time.time() time time() 返回当前时间的时间戳(1970纪元后经过的浮点秒数). import tim ...

  8. NumPy和Pandas常用库

    NumPy和Pandas常用库 1.NumPy NumPy是高性能科学计算和数据分析的基础包.部分功能如下: ndarray, 具有矢量算术运算和复杂广播能力的快速且节省空间的多维数组. 用于对整组数 ...

  9. 【Python学习系列三】Windows下Python第三方常用库安装

    Python有丰富的第三方库,提供丰富的爬虫.数据分析等功能. 方法一:下载完整包,含编译器和常见库,https://www.continuum.io/downloads/          针对操作 ...

最新文章

  1. 最近后缀.Scaletto,.com}KBK,com}BET,.Fuchsi勒索病毒开始爆发…
  2. tensorflow-Inception-v3模型训练自己的数据代码示例
  3. php ajax 注册,非常实用的ajax用户注册模块
  4. 云炬WEB开发笔记3-1 项目初始化概要
  5. linux java 查询mysql_Linux Java连接MySQL数据库
  6. SAP CRM和SAP Hybris的订单修改记录
  7. mac按文件名查找文件_如何在Mac上查找和删除大文件
  8. Arduino笔记-WeMos D1通过HTTP亮熄灯
  9. android 字体切换快捷键,Android stdio 字体设置及快捷键
  10. 高通增加Adsp log( 三十)
  11. 如何使用Magoshare Data Recovery在mac上恢复找回删除的丢失文件?
  12. linux log 2 1,51CTO博客-专业IT技术博客创作平台-技术成就梦想
  13. LinkedList的线程安全解决办法
  14. 从客户端登陆服务器的配置文件,从客户端登陆服务器的配置
  15. 电阻电容等封装对应功率
  16. 申请计算机语言学留学要求,布兰迪斯大学计算机语言学文学硕士研究生申请要求及申请材料要求清单...
  17. 计算机管理 存储空间不足,win10系统提示“存储空间不足无法处理此命令”的处理技巧...
  18. tasklist 结束进程_windows
  19. 在win8.1系统下运行VC++6.0
  20. java使用aspose将word,excel,ppt转pdf

热门文章

  1. json/ 发送形式_24/7的完整形式是什么?
  2. obj[]与obj._Ruby中带有示例的Array.rassoc(obj)方法
  3. pandas 根据列名索引多列数据_Pandas 数据聚合与分组运算[groupby+apply]速查笔记
  4. 计算机常用英语1000个,1000个常用英语单词.pdf
  5. java server模式 设置_JVM client模式和Server模式的区别
  6. linux线程学习初步02
  7. 全国英语计算机9月统考2019,2019年9月网络教育统考《计算机应用基础》模拟题6...
  8. linux网络编程(二)TCP通讯状态
  9. 【微机原理与接口技术】具体芯片(1)并行接口8255A(2):控制字概述
  10. #if/#else/#endif