gpt4 book ai didi

c++ - 无法制作包含 ptr_vector 的类的 vector

转载 作者:太空狗 更新时间:2023-10-29 23:46:41 25 4
gpt4 key购买 nike

我需要一个 std::vectorboost::ptr_vector。为了使它们的管理更容易,我将 boost::ptr_vector 包含在一个类 (Zoo) 中,并为其创建了一个 std::vector (allZoos)。查看用于重现此内容的最小代码:

#include <boost/ptr_container/ptr_vector.hpp>
#include <boost/utility.hpp>

class Animal
{
public:
virtual char type() = 0;
};

class Cat : public Animal
{
public:
char type() { return 1; }
};

class Zoo
{
public:
boost::ptr_vector<Animal> animals;
};


int main()
{
std::vector<Zoo> allZoos;

Zoo ourCityZoo;
ourCityZoo.animals.push_back(new Cat());

//Uncommenting any of the lines below causes error:
//allZoos.push_back(ourCityZoo);
//allZoos.clear();

return 0;
}

声明allZoos是可以的,但是调用它的任何一个成员函数都会导致编译错误:(完整的错误日志太长了,就不贴了)

C2259: 'Animal' : cannot instantiate abstract class c:\boost_1_49_0\boost\ptr_container\clone_allocator.hpp 34  1

这与 boost 的不可复制实用程序类和自定义 new_clone 函数无关,我尝试了它们但没有成功。怎么解决?

(我使用的是 VS2010)

最佳答案

实际上,了解错误出现的位置会有所帮助。 Boost 源代码中清楚明了地说明了这一点:

template< class T >
inline T* new_clone( const T& r )
{
//
// @remark: if you get a compile-error here,
// it is most likely because you did not
// define new_clone( const T& ) in the namespace
// of T.
//
T* res = new T( r );
BOOST_ASSERT( typeid(r) == typeid(*res) &&
"Default new_clone() sliced object!" );
return res;
}

如果您没有指定克隆类型的方法,它将尝试通过简单地复制它来实现,这对于抽象类来说是不可能的。将适当的 clone 方法添加到 abstract_class 并在其命名空间中添加一个 new_clone 函数,就可以了。

Here是您代码的固定版本。

关于c++ - 无法制作包含 ptr_vector<an_abstract_class> 的类的 vector ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9645090/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com