一、boost是一个准标准库,相当于STL的延续和扩充,它的设计理念和STL比较接近,都是利用泛型让复用达到最大化。不过对比STL,boost更加实用。STL集中在算法部分,而boost包含了不少工具类,可以完成比较具体的工作。考虑到boost的强大,为此特地里做了windows下移植编译操作。
二、boost的移植
1.下载boost源码boost_1_62_0.7z,下载地址:https://sourceforge.NET/projects/boost/
其实也可以下载boos编译好的库和头文件,不过为了不必要的麻烦,建议手动编译
2.编译boost
1)解压boost到d盘,目录为boost_1_62
2)生成bjam工具:
进入D:oost_1_62_0oost_1_62_0 oolsuildsrcengine目录下,执行build.sh gcc,在当前目录将会生成bin.ntx86文件夹,里面包含两个exe文件b2.exe,bjam.exe
3)将bin.ntx86jam.exe拷贝到boost1.37的解压目录D:oost_1_62_0oost_1_62_0中
4)进入路径D:oost_1_62_0oost_1_62_0,执行 bjam "toolset=gcc" install ,等待一段时间后,会在C盘根目录下生成一个boost文件夹,里面放着生成的头文件以及LIB和DLL文
5)将C:Boostincludeoost-1_37目录下的boost文件夹拷贝到C:MinGWinclude下面
6)将C:Boostlib下的lib文件拷贝到C:MinGWlib,将C:Boostlib下的dll文件拷贝到C:MinGWin
三、boost的使用
程序代码入下:
- #include <iostream>
- #include <boost/math/special_functions/acosh.hpp>
- #include <boost/math/special_functions/bessel.hpp>
- #include <string>
- #include <boost/filesystem.hpp>
- #include <boost/timer.hpp>
- using namespace boost::math;
- using namespace boost::math::detail;
- namespace fs = boost::filesystem;
- //测试boost贝塞尔函数
- void testBessel(){
- std::cout<<"Test Boost:"<<std::endl;
- std::cout<<acosh(2.5)<<std::endl;
- std::cout<<bessel_i0(3.2)<<std::endl;
- std::cout<<"Test Finished!"<<std::endl;
- }
- //测试boost文件系统库
- void testFileSystem(){
- fs::path full_path("c:");
- fs::directory_iterator end_iter;
- for ( fs::directory_iterator dir_itr( full_path ); dir_itr != end_iter; ++dir_itr )
- {
- std::cout << dir_itr->path().filename() << std::endl;
- }
- }
- int main(int argc, char *argv[])
- {
- std::cout << "-----测试boost贝塞尔函数-------" << std::endl;
- testBessel();
- std::cout << "-----测试boost文件系统库------" << std::endl;
- testFileSystem();
- return 0;
- }
在xxx_pro中添加,
LIBS += -LC:Qtmingwlib -lboost_system -lboost_filesystem
运行效果如下,
- Starting D:Documentsuild-cplusplusboost-unknown-Debugdebugcplusplusboost.exe...
- -----测试boost贝塞尔函数-------
- Test Boost:
- 1.5668
- 5.74721
- Test Finished!
- -----测试boost文件系统库------
- "$RECYCLE.BIN"
- "Boost"
- "Boot"
- "bootmgr"
- "Documents and Settings"
- "PerfLogs"
- "Program Files"
- "Program Files (x86)"
- "ProgramData"
- "Qt"
- "RECYCLER"
- "System Volume Information"
- "Users"
- "Windows"
http://blog.csdn.net/xiaopangzi313/article/details/52800799