为啥派生类对象的指针数组无法声明
Posted
技术标签:
【中文标题】为啥派生类对象的指针数组无法声明【英文标题】:Why an array of pointers of derivative class objects not able to declare为什么派生类对象的指针数组无法声明 【发布时间】:2015-02-22 05:16:24 【问题描述】:可能重复:
Creating an array of pointers of derivative class objects. C++. Abstract base class
在这里,我在定义这种类型的类结构时遇到了错误。实际上我想访问我在下面定义的KeyValue2
类的一些额外方法。但我只能访问IKeyValue
类方法,因为在这里我无法在vectorKeyValue
类中创建KeyValue2
对象指针。
请在代码注释中查看更多详细信息
错误:"KeyValue2 **"
类型的值不能分配给"IKeyValue **"
类型的实体
代码:
class IKeyValue
IKeyValue()
virtual ~IKeyValue()
virtual void setKey(int key) = 0;
virtual void setValue(std::string value) = 0;
virtual int getKey() = 0;
virtual std::string getValue() = 0;
;
struct IVectorKeyValue
// some methods with Virtual keyword and virtual destructor.
IVectorKeyValue()
virtual ~IVectorKeyValue()
virtual void push_back(IKeyValue * item) = 0;
virtual void pop_back() = 0;
virtual IKeyValue * get(int index) = 0;
virtual void set(int index, IKeyValue * item) = 0;
virtual size_t size() = 0;
;
class KeyValue : public IKeyValue
public:
// declare all methods of IKeyValue Base Class
// This method is Extra Method, which i will use through derive class object
std::string getValueIndex(int index);
IVectorString* getVectorStringValues();
private:
int key_;
;
class VectorKeyValue : public IVectorKeyValue
public:
VectorKeyValue() : size_(0), capacity_(10)
vectorKeyValue_ = new KeyValue2 *[capacity_];
~VectorKeyValue()
delete[] vectorKeyValue_;
vectorKeyValue_ = NULL;
// declare all methods of IVectorKeyValue Base Class
private:
size_t size_;
size_t capacity_;
IKeyValue **vectorKeyValue_;
;
int main()
IVectorKeyValue *rootNode = new VectorKeyValue();
// here I want to use some methods of KeyValue2 class, like getValueIndex and getVectorStringValues
// But i cant use them. I do not know why.
// getVectorStringValues method i am not able to access. because
// here rootNode->get(0) type is IkeyValue not KeyValue.
rootNode->get(0)->getVectorStringValues();
return 0;
任何帮助将不胜感激。
感谢和问候
【问题讨论】:
IKeyValue **
和 KeyValue2 **
不兼容。您的阵列需要进行基本的设计修复。它只能包含IKeyValue *
类型的指针,它可能指向KeyValue2
对象。每个KeyValue2
将被单独分配,而不是作为一个数组。
如果你使用std::vector
而不是重新发明***,它会让生活变得更轻松,如果你使用std::vector<std:;shared_ptr<IKeyValue *>>
,可能会更容易。
@MattMcNabb 我不能使用矢量,这是关于我的作业的。请让我知道如何实现这一目标
将new KeyValue2 *[capacity_];
更改为new IKeyValue *[capacity_]();
。并编写或禁用复制构造函数和复制赋值运算符。
【参考方案1】:
确实,指向子类型指针的指针不能隐式转换为指向超类型指针的指针。要了解原因,请考虑以下几点:
SuperType super;
SubType * sub_ptr = NULL;
SuperType * * super_ptr_ptr = &sub_ptr; // illegal
*super_ptr_ptr = &super;
没有此限制,您可以将 sub_ptr
更改为指向 super
,而无需任何类型的显式强制转换或其他表明预期会违反类型系统的指示。
(这与T * *
不能隐式转换为const T * *
的原因相同,即使T *
可以隐式转换为const T *
。)
【讨论】:
感谢您的回答。但是我可以在我的代码中更改什么,以便我可以访问我想要的方法。 @Sam_k:只需将IKeyValue **vectorKeyValue_;
更改为KeyValue2 **vectorKeyValue_;
。个人KeyValue2 *
-s可以根据需要转换为IKeyValue *
-s。
我也这样做了:KeyValue **vectorKeyValue_
现在这个错误消失了。但在此之后,根据我的其他虚拟函数定义,我无法在某些方法中将输入参数分配给我的指针数组:void set(int index, IKeyValue * item)
@Sam_k:当然可以。 KeyValue2 *
可转换为 IKeyValue *
。
但是我查过了,我做不到。很长一段时间后,我更改了方法名称,并在我的 cpp 文件中将 set 方法保持为空。这是个好主意吗? void VectorKeyValue::setKeyValuePair(int index, KeyValue* item) if(index < size_ && index >= 0) vectorKeyValue_[index] = item;
以上是关于为啥派生类对象的指针数组无法声明的主要内容,如果未能解决你的问题,请参考以下文章
为啥C ++允许将指向基对象的指针转换为派生类的指针[重复]