gpt4 book ai didi

c++ - 从基类调用派生类c++的函数

转载 作者:行者123 更新时间:2023-11-28 06:59:02 24 4
gpt4 key购买 nike

如何调用派生类的函数,无需类型转换?

基本类型:

class Fruit{
public:
virtual void show() {cout « "its a fruct" « endl;}
};

child :

class Banana : public Fruit{
public:
void show() { cout « "it's yellow banana" « endl; }
};

派生指针数组

class Basket
{
Fruit *fructs_;
//...
public:
void show();
//...
};

void Basket:: show(){
for(int i=0; i< index_; i++)
(fructs_+i)->show(); // need call Banana::show here
}

最佳答案

C 样式数组不能以多态方式使用,因为基类和派生类的大小很复杂。你应该使用 std::vector 水果 smart pointers相反:

std::vector<std::shared_ptr<Fruit>> fruits;

关于c++ - 从基类调用派生类c++的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22772445/

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