创建指向类对象的指针数组
问题:
创建一个至少包含四个指向 Reader 对象的指针的数组。使用 New 运算符创建至少四个指向派生类对象的指针并将它们分配给数组。
我不确定我做对了还是错了。
Reader 是基类。 John、David、Daniel、Mark 是派生类
int main(void)
{
Reader *obj[4];
obj[0] = new John();
obj[1] = new David();
obj[3] = new Daniel();
obj[2] = new Mark();
}
这是对的吗???
Question:
Create an array of at least four pointers to Reader objects. Use the New operator to create at least four pointers to derived class objects and assign them to the array.
I'm not sure If I did it right or not.
Reader is the base class. John, David, Daniel, Mark are the derived class
int main(void)
{
Reader *obj[4];
obj[0] = new John();
obj[1] = new David();
obj[3] = new Daniel();
obj[2] = new Mark();
}
Would this be right???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的代码正确。
正如 @sharptooth 建议的那样,对分配的 obj[] 进行删除练习。在 C++ 中,
new
分配内存,delete
释放内存。Your code is correct.
And as @sharptooth suggested, make a practice of
delete
on the allocatedobj[]
s. In C++new
allocates memory anddelete
deallocates.