gpt4 book ai didi

C++ 在作为父类(super class)传递后使用覆盖方法

转载 作者:太空宇宙 更新时间:2023-11-04 14:34:54 25 4
gpt4 key购买 nike

如果我有一个 C++ 函数/方法,例如:

getSound(Animal a){
a.printSound();
}

然后传递给它一个 Dog 对象,该对象扩展了类 Animal 但覆盖了 Animal 的 printSound() 方法,有没有一种使用方法狗的 printSound()getSound() 中?

我已经尝试在 Animal 类定义中使 printSound() 成为虚拟的,但我仍然得到原始 printSound() 的输出>.

提前致谢。

最佳答案

是因为object-slicing ,因为您按值接受参数。

通过引用接受它:

void getSound(Animal & a); //now reference

如果 Animal::printSound() 不改变对象的状态,则使其成为 const 成员函数(如果它还不是 const),然后通过 const 引用接受参数:

void getSound(Animal const & a); //now const reference

关于C++ 在作为父类(super class)传递后使用覆盖方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12028250/

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