gpt4 book ai didi

c++ - 继承 : call a derived class function from base class

转载 作者:行者123 更新时间:2023-11-28 05:21:52 25 4
gpt4 key购买 nike

在 C++ 中可以做到这一点吗?

class Base {
int a(Derived d) { d.b(); }
};

class Derived : public Base {
int b();
};

我是否应该在 Base.hpp 中包含 Derived.hpp?

最佳答案

Is possible in C++ to make this?

是的,它非常简单并且是 c++ 语言中使用的基本模式(称为多态或 Template Method Pattern):

class Base {
int a() { b(); } // Note there's no parameter needed!
// Just provide a pure virtual function declaration in the base class
protected:
virtual int b() = 0;

};

class Derived : public Base {
int b();
};

关于c++ - 继承 : call a derived class function from base class,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41335526/

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