1. BOOST编译过程非常复杂,目前为了学习BOOST,首先搭建基于VS2010的BOOST开发环境。
8
9.
10.
11
12
13
14
15.
16.
17.
18.
19.
#include <iostream> //C++的标准输入输出
#include <stdlib.h> //为了使用system函数
#include <boost\lexical_cast.hpp> //为了使用boost数据类型转换
using namespace std;//为了使用cout
void main() //函数入口点,返回值为kon
{
cout<<"hello,world,boost"<<endl; //C++打印出helloworld
inti=8848; //定义整数
char*mystr="2013";//定义字符串
i=boost::lexical_cast<int>(mystr);//实现数据类型转换
cout<<i<<endl;//打印出2013
system("pause"); //结果暂停
}
这个时候说明boost开发环境搭建完成。
20.如果安装VS2013 64位,则启动
与此同时,boost的32位与64位可以并行存在。
21.配置VS2013与VS2010基本一致。
22如果要实现兼容所有的版本
它兼容VC++的所有版本。解压缩,然后配置VC++目录即可。
23.boost开发环境搭建完成,希望大家认真实践。