實戰準標準庫Boost —— (2)測試Boost配置的Hello World程式
1. 配置環境
請先按照《Boost C++ Libs
—— (1)配置Boost的VS2008開發環境》一文在Visual Studio中配置開發環境。
2. 原始碼
#include <boost/lexical_cast.hpp>
#include <iostream>
using namespace std;
int main()
{
using boost::lexical_cast;
int a=lexical_cast<int>("123");
double b=lexical_cast<double>("123.0123456789");
string s0=lexical_cast<string>(a);
string s1=lexical_cast<string>(b);
cout<<"number: "<<a<<" "<<b<<endl;
cout<<"string: "<<s0<<" "<<s1<<endl;
int c=0;
try{
c=lexical_cast<int>("abcd");
}
catch(boost::bad_lexical_cast& e){
cout<<e.what()<<endl;
}
return 0;
}
相關文章
- 實戰準標準庫Boost —— (1)配置Boost的VS2008開發環境開發環境
- 超越C++標準庫:Boost庫導論電子書PDF下載C++
- 小試 boost spirit
- Oracle Stream實戰(2)—測試環境準備(一)Oracle
- boost庫的介紹
- boost------asio庫的使用1(Boost程式庫完全開發指南)讀書筆記筆記
- boost原始碼剖析----boost::any原始碼
- Golang語言標準庫time實戰篇Golang
- Boost常用庫案列
- boost學習之Boost.Lambda
- 編譯 boost 庫(win7+boost1.60+vs2008)編譯Win7
- 在Qt中使用boost庫QT
- boost庫學習筆記筆記
- 精準測試實踐
- boost and windowsWindows
- Aircheck G2-TA-KT無線WIFI測試標準AIWiFi
- Oracle Stream實戰(7)—測試環境準備(六)Oracle
- Oracle Stream實戰(6)—測試環境準備(五)Oracle
- Oracle Stream實戰(5)—測試環境準備(四)Oracle
- Oracle Stream實戰(4)—測試環境準備(三)Oracle
- Oracle Stream實戰(3)—測試環境準備(二)Oracle
- 測試基準資料的準備
- 軟體測試BUG參考標準
- Boost timer實現
- 軟體測試的准入準出是什麼?標準是什麼?
- Windows下下載編譯boost庫Windows編譯
- C 標準庫 -
- 軟體測評中心▏軟體產品測試的准入準出標準有哪些?
- 測試流程規範--測試准入、準出、停止標準、bug優先順序定義
- boost library
- CUJ:標準庫:標準庫中的搜尋演算法 (轉)演算法
- 幾乎所有程式語言的hello, world程式(2)
- Smarty配置(標準分析)
- C++標準庫、C++標準模版庫介紹C++
- Python標準庫06 子程式Python
- Python 2.* 標準庫簡介Python
- html標準分辯率頁面測試HTML
- ABAP程式Hello World