1.错误信息如下:
#include <iostream>
#include <memory>
#include <boost/shared_ptr.hpp>
using namespace std;
using namespace boost;
int main(void)
{
for (int i = 0; i < 10000; ++i) {
//unique_ptr<int> int_ptr(new int());
shared_ptr<int> p;
}
return 0;
}
autopointer.cpp:3:32: fatal error: boost/shared_ptr.hpp: No such file or directory
#include <boost/shared_ptr.hpp>
^
compilation terminated.
make: *** [autopointer] Error 1
Press ENTER or type command to continue
这是明显的找不到头文件的架势阿!难道还要安装boost库?花了十分钟了解到果然是要安装的啊!请原谅我这个菜鸟。
2.安装boost库
于是乎,就想了 ubuntu下安装应该很简单的啊,sudo apt-get 应该就能解决了啊。
sudo apt-get install libboost [tab][tab],就会出现很多的提示
发现这个库:libboost-random1.55-dev,应该是的
所以:sudo apt-get install libboost-random1.55-dev,等了几分钟之后,在编译下上面的源代码解决问题了。