如何在window系统VS中设置boost编程环境

在windows系统中设置boost编程非常简单:

1、下载boost软件包

网址:http://www.boost.org/
最新版:http://www.boost.org/users/history/version_1_66_0.html

如何在window系统VS中设置boost编程环境_第1张图片

2、解压到电脑中(例如,D:\boost),找到.bat文件,点击,然后等待……
会在同一文件夹中生成两个文件,见下图,点击b2.exe,等待……等待……,一直到编译完成。

如何在window系统VS中设置boost编程环境_第2张图片

3、打开VS,建立工程。在工程属性中,编译和链接中设置如下图所示:

如何在window系统VS中设置boost编程环境_第3张图片

如何在window系统VS中设置boost编程环境_第4张图片

4、举个例子试试

/*
测试boost安装是否成功
*/
#include      
#include      
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;
    }

    getchar();
    return 0;
}

运行如下,表示没有错误。

这里写图片描述

你可能感兴趣的:(C/,C++)