本文介绍了多级继承中的虚函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我有一个多级继承.
假设有4个班级:
A
|
B
|
C
|
D

其中D是从C派生的,C是从B派生的,而B又是A派生的.

如果假设类B已声明和定义了一些虚函数,那么我们是否需要在类C中重新定义B的所有虚函数?

If suppose I have a multilevel inheritance.
Say there are 4 classes:
A
|
B
|
C
|
D

where D is derived from C which is derived from B which inturn is derived from A.

If suppose class B has some virtual functions declared and defined then do we need to redefine all of the virtual functions of B in class C?

推荐答案


这篇关于多级继承中的虚函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 18:08