Boost常用庫案列
1.boost::any
boost::any是一種通用的資料型別,可以將各種型別包裝後統一放入容器內,最重要的它是型別安全的。有點象COM裡面的variant。
使用方法:
any::type() 返回包裝的型別
any_cast可用於any到其他型別的轉化
- #include <boost/any.hpp>
- void test_any()
- {
- typedef std::vector<boost::any> many;
- many a;
- a.push_back(2);
- a.push_back(string("test"));
- for(unsigned int i=0;i<a.size();++i)
- {
- cout<<a[i].type().name()<<endl;
- try
- {
- int result = any_cast<int>(a[i]);
- cout<<result<<endl;
- }
- catch(boost::bad_any_cast & ex)
- {
- cout<<"cast error:"<<ex.what()<<endl;
- }
- }
- }
2.boost::array
boost::array僅僅是對陣列一層薄薄的封裝,提供跟各種演算法配合的iterator,使用方法很簡單。注意:可以使用{}來初始化array,因為array所有的成員變數都是public的。
- #include <boost/array.hpp>
- void test_array()
- {
- array<int,10> ai = {1,2,3};
- for(size_t i=0;i<ai.size();++i)
- {
- cout<<ai[i]<<endl;
- }
- }
3.boost::lexical_cast
lexical_cast用於將字串轉換成各種數字型別(int,float,short etc.)。
- #include <boost/lexical_cast.hpp>
- void test_lexical_cast()
- {
- int i = boost::lexical_cast<int>("123");
- cout << i << endl;
- }
4.boost::format
boost::format是用於替代c裡面的sprintf,優點是型別安全,不會因為型別和引數不匹配而導致程式崩潰了,而且還可以重複使用引數。
- #include <boost/format.hpp>
- void test_format()
- {
- cout <<
- boost::format("writing %1%, x=%2% : %3%-th try")
- % "toto"
- % 40.23
- % 50
- <<endl;
- format f("a=%1%,b=%2%,c=%3%,a=%1%");
- f % "string" % 2 % 10.0;
- cout << f.str() << endl;
- }
5.boost::tokenizer
boost::tokenizer是用於切割字串的,類似於Java裡面的StringTokenizer。
- #include <boost/tokenizer.hpp>
- void test_tokenizer()
- {
- string s("This is , a ,test!");
- boost::tokenizer<> tok(s);
- for(tokenizer<>::iterator beg=tok.begin(); beg!=tok.end();++beg)
- {
- cout << *beg << " ";
- }
- }
6.boost::thread
boost::thread是為了提供跨平臺的thread機制。利用boost::function來完成委託。
- #include <boost/thread.hpp>
- void mythread()
- {
- cout<<"hello,thread!"<<endl;
- }
- void test_thread()
- {
- boost::function< void () > f(mythread);
- boost::thread t(f);
- t.join();
- cout<<"thread is over!"<<endl;
- }
7.boost::serialization
boost::serialization提供object的序列化功能。而且提供好幾種序列化的格式,比如text,binary,xml。
- #include <boost/archive/text_oarchive.hpp>
- #include <boost/archive/text_iarchive.hpp>
- #include <boost/archive/xml_oarchive.hpp>
- void test_serialization()
- {
- boost::archive::text_oarchive to(cout , boost::archive::no_header);
- int i = 10;
- string s = "This is a test ";
- to & i;
- to & s;
- ofstream f("test.xml");
- boost::archive::xml_oarchive xo(f);
- xo & BOOST_SERIALIZATION_NVP(i) & BOOST_SERIALIZATION_NVP(s);
- boost::archive::text_iarchive ti(cin , boost::archive::no_header);
- ti & i & s;
- cout <<"i="<< i << endl;
- cout <<"s="<< s << endl;
- }
8.boost::function
boost::function就是所謂的泛函式,能夠對普通函式指標,成員函式指標,functor進行委託,達到遲呼叫的效果。
- #include <boost/function.hpp>
- int foo(int x,int y)
- {
- cout<< "(foo invoking)x = "<<x << " y = "<< y <<endl;
- return x+y;
- }
- struct test
- {
- int foo(int x,int y)
- {
- cout<< "(test::foo invoking)x = "<<x << " y = "<< y <<endl;
- return x+y;
- }
- };
- void test_function()
- {
- boost::function<int (int,int)> f;
- f = foo;
- cout << "f(2,3)="<<f(2,3)<<endl;
- test x;
- /*f = std::bind1st(std::mem_fun(&test::foo), &x);*/
- boost::function<int (test*,int,int)> f2;
- f2 = &test::foo;
- cout << "f2(5,3)="<<f2(&x,5,3)<<endl;
- }
9.boost::shared_ptr
boost::shared_ptr就是智慧指標的實現,不象std::auto_ptr,它是可以stl的容器一起使用的,非常的方便。
- #include <boost/shared_ptr.hpp>
- class Shared
- {
- public:
- Shared()
- {
- cout << "ctor() called"<<endl;
- }
- Shared(const Shared & other)
- {
- cout << "copy ctor() called"<<endl;
- }
- ~Shared()
- {
- cout << "dtor() called"<<endl;
- }
- Shared & operator = (const Shared & other)
- {
- cout << "operator = called"<<endl;
- }
- };
- void test_shared_ptr()
- {
- typedef boost::shared_ptr<Shared> SharedSP;
- typedef vector<SharedSP> VShared;
- VShared v;
- v.push_back(SharedSP(new Shared()));
- v.push_back(SharedSP(new Shared()));
- }
-
相關文章
- boost 正規表示式解析配置檔案或命令列命令列
- 簡單解析C++基於Boost庫實現命令列C++命令列
- boost庫的介紹
- 在Qt中使用boost庫QT
- boost庫學習筆記筆記
- boost------asio庫的使用1(Boost程式庫完全開發指南)讀書筆記筆記
- 編譯 boost 庫(win7+boost1.60+vs2008)編譯Win7
- Windows下下載編譯boost庫Windows編譯
- Ubuntu下安裝C++ boost庫UbuntuC++
- 實戰準標準庫Boost —— (2)測試Boost配置的Hello World程式
- boost_python庫pyd執行庫不可少!Python
- boost原始碼剖析----boost::any原始碼
- C++ 檔案、資料夾、路徑處理函式庫:boost::filesystemC++函式
- golang常用庫:配置檔案解析庫-viper使用Golang
- boost學習之Boost.Lambda
- BOOST庫 學習參考完全開發指南
- CGAL BOOST 以及對如何安裝庫的思考
- boost and windowsWindows
- 實戰準標準庫Boost —— (1)配置Boost的VS2008開發環境開發環境
- 使用Boost庫報error C4996錯誤Error996
- Linux安裝boost、libevent、zlib、OpenSSL庫Linux
- VS2010 安裝 Boost 庫 1.54
- 常用陣列方法陣列
- 陣列常用方法陣列
- golang常用庫:cli命令列/應用程式生成工具-cobra使用Golang命令列
- C++跨平臺庫boost和Poco的編譯C++編譯
- 超越C++標準庫:Boost庫導論電子書PDF下載C++
- boost的安裝、檢視與解除安裝(某動態庫要求的boost版本不適配怎麼辦?)
- 常用陣列方法梳理陣列
- 陣列常用的方法陣列
- 陣列的常用方法陣列
- 陣列常用物件方法陣列物件
- Git常用的命令列Git命令列
- js常用陣列方法JS陣列
- JS常用陣列操作JS陣列
- 常用命令列命令列
- JavaScript陣列常用操作JavaScript陣列
- javascript陣列常用方法JavaScript陣列