1

这是代码(来自http://www.boost.org/doc/libs/1_52_0/doc/html/container/move_emplace.html

#include <boost/container/list.hpp>
#include <cassert>
class non_copy_movable
{
   non_copy_movable(const non_copy_movable &);
   non_copy_movable& operator=(const non_copy_movable &);

   public:
   non_copy_movable(int = 0) {}
};
int main ()
{
   using namespace boost::container;
   list<non_copy_movable> l;
   non_copy_movable ncm;
   l.emplace(l.begin(), 0);
   assert(l.size() == 1);
   l.emplace(l.begin());
   assert(l.size() == 2);
   return 0;
}

我有编译问题。我努力了:

g++ 2.cpp -o 2 -I /usr/include/boost

还有其他组合,但这是错误的。

错误:

2.cpp:1:36: error: boost/container/list.hpp: No such file or directory
2.cpp: In function ‘int main()’:
2.cpp:13: error: ‘boost’ has not been declared
2.cpp:13: error: ‘container’ is not a namespace-name
2.cpp:13: error: expected namespace-name before ‘;’ token
2.cpp:14: error: ‘list’ was not declared in this scope
2.cpp:14: error: expected primary-expression before ‘&gt;’ token
2.cpp:14: error: ‘l’ was not declared in this scope

我在路径中有“boost include”:/usr/lib 中的 /usr/include/boost 与 boost 没有任何关系。我已经使用以下命令在 ubuntu 上安装了 boost:

sudo apt-get install libboost-all-dev

你有一些用于 boost 程序的通用编译吗?另一个程序也是用 c++ 编写的,使用 boost 我正常编译没有错误:

g++ 1.cpp -o 1
./1
4

1 回答 1

0

大多数 boost 都是仅头文件的库,所以如果 /usr/lib 中没有任何 boost 库,我并不感到惊讶。

也就是说,我认为您的包含路径设置是错误的。您正在尝试包含 boost/container/list.hpp 但您的包含路径中已经包含“boost”。除非库正在安装 /usr/include/boost/boost,否则您需要从包含路径或 #include 行中删除“boost”。我的偏好是将它从包含路径中删除,因为这样的语句#include <boost/container/list.hpp>#include <container/list.hpp>.

于 2012-12-28T15:52:35.350 回答