Linux C++ boost库编译使用
Boost库是一个经过千锤百炼、可移植、提供源代码的C++库,作为标准库的后备,是C++标准化进程的发动机之一。 Boost库由C++标准委员会库工作组成员发起,其中有些内容有望成为下一代C++标准库内容。在C++社区中影响甚大,其成员已近2000人。 Boost库为我们带来了最新、最酷、最实用的技术,是不折不扣的“准”标准库。
·
Boost库中比较有名的几个库: (1)Regex,正则表达式库; (2)Spirit,LL parser framework,用C++代码直接表达EBNF; (3)Graph,图组件和算法; (4)Lambda,在调用的地方定义短小匿名的函数对象,很实用的functional功能; (5)concept check,检查泛型编程中的concept; (6)Mpl,用模板实现的元编程框架; (7)Thread,可移植的C++多线程库; (8)Python,把C++类和函数映射到Python之中; (9)Pool,内存池管理; (10)smart_ptr,智能指针。
在(终端)Terminal中分别执行以下3步编译boost:
1. 在http://www.boost.org/下载后,使用root用户进入压缩包所在目录解压: tar -zxvf boost_1_57_0.tar.gz
如果是Ubuntu则使用:sudo tar -zxvf boost_1_57_0.tar.gz
2. 进入:cd ./boost_1_57_0目录,运行: ./bootstrap.sh --prefix=/usr
/usr 可替换为任意路径 (事前运行./bootstrap.sh --help 看下参数说明)
或 运行:./bootstrap.sh
如果执行时可以在后面不加prefix参数,编译好后,默认的头文件在/usr/local/include/boost目录下。
库文件在/usr/local/lib/目录下。
默认不用修改。
3. 运行:./b2 install
编译可能需要30分钟上下,按电脑配置。
4、测试
#include <vector>
#include <iostream>
#include <boost/foreach.hpp>
#include <boost/assign.hpp>
#include <boost/timer.hpp>
using namespace std;
using namespace boost;
int main()
{
timer t;
vector<int> v = (assign::list_of(1), 2, 3, 4, 5);
//(assign::list_of(1)( 2)(3)( 4) (5));
BOOST_FOREACH(int x, v)
{
cout << x << ",";
}
cout << endl;
cout << t.elapsed() << "s" << endl;
cout << "Hello world!" << endl;
system("pause");
return 0;
}
[root@root test]# ./tboost
1,2,3,4,5,
0s
Hello world!
sh: pause: command not found
更多推荐
已为社区贡献1条内容
所有评论(0)