ubuntu下Boost库安装

最近在研究hadoop和云计算,但是hadoop是java写的,在hadoop上编写程序也要用java,所以最近可能会经常使用java。为了防止忘记C++,今天决定开始研究一下boost库。

先把boost装到ubuntu吧。

下载boost_1_43_0.tar.gz到/home/dtz/下,解压 tar zxvf boost_1_43_0.tar.gz
cd boost_1_43_0,

执行:

sudo ./bootstrap.sh

sudo ./bjam install

这样boost库就安装好了,下面编写一个例子测试一下:
#include 
#include

using namespace std;

int main(int argc, char *argv[]) {
boost::scoped_ptr i(new int);
*i = 2;

cout << *i << endl;

return 0;
}


在shell中编译执行:

[img]http://dl.iteye.com/upload/attachment/359962/5ae83a03-4f61-3bb3-953e-f3868ca65774.png[/img]

你可能感兴趣的:(boost)