Boost库是一个经过可移植、提供源代码的C++库,目前最新的版本是1.37.0,
下载地址http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=637761,
要想正常使用boost,还要使用bjam.exe编译一下。bjam.exe是类似与unix上make的一个东西,
它会按照一定规则编译文件然后连接。这个程序boost网站上已经有了。请到www.boost.org首页自己找,或者直接到这里:
http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=72941&release_id=643622.
下载以后解压,把bjam.exe复制到boost_1_37_0目录,或者你自己的相应目录。然后执行打开cmd.exe,切换到boost_1_37_0路径下执行:
bjam --toolset=msvc-8.0 --build-type=complete install
会把boost全部编译,并且安装到c:\boost目录。如果想安装到其他路径下可执行
bjam "-sVC80_ROOT=D:\Program Files\Microsoft Visual Studio 8\VC" "-sTOOLS=vc-8_0" "--prefix=D:\Boost" install;
第一个-s是指明vc8的路径,第二个是编译工具,这里就是vc8,最后一个就是生成文件放置的位置。如果我们已经安装了python,可在
--prefix前加上"sPYTHON_ROOT=python的路径".
编译完成后在VS2005的tools->Options->Projects and Solutions->VC++Directories的Platfrom,选择平台(win32、Windows Moblile 5.0 Pocket PC SDK),
在"include files"中加入路径"D:\Boost\include\boost-1_37",在"liberary files"中加入路径"D:\Boost\lib".
下面是段测试代码:
#include "stdafx.h"
#include <iostream>
#include <boost\throw_exception.hpp>
#include <boost\lexical_cast.hpp>
using namespace std;
using namespace boost;
int _tmain(int argc, _TCHAR* argv[])
{
using boost::lexical_cast;
int a = lexical_cast<int>("123");
double b = lexical_cast<double>("123.12");
std::cout<<a<<std::endl;
std::cout<<b<<std::endl;
system("pause");
return 0;
}