码迷,mamicode.com
首页 > 其他好文 > 详细

VS2013中BOOST库的环境配置与使用

时间:2016-04-15 11:53:17      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

&1 安装Boost

文件下载:链接:http://pan.baidu.com/s/1kUKaOFP 密码:auf2

解压之后放到你想安装的文件夹内,我的是在C:\Program Files\boost\boost_1_60_0中。

 

&2 运行bootstrap.bat文件

以管理员权限运行cmd,切换到boost目录,运行bootstrap.bat文件,结果如下所示:

技术分享

 

&3 文件夹内会生成一个bjam.exe文件,下一步就是运行它

结果如下图所示:

技术分享

 

&4 配置VS2013

  • 项目右键单击->属性->C/C++->附加包含目录

    配置的目录为:C:\Program Files\boost\boost_1_60_0

技术分享

  • 项目键单击->属性->链接器->附加库目录

    配置目录:C:\Program Files\boost\boost_1_60_0\libs

技术分享

 

&5 测试代码

#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;
}

system("Pause");
return 0;
}

 

&6 程序结果

技术分享

 

VS2013中BOOST库的环境配置与使用

标签:

原文地址:http://www.cnblogs.com/sophia-hxw/p/5394748.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!