gpt4 book ai didi

c++ - 为什么 '&' 会改变对象的行为?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:54:14 24 4
gpt4 key购买 nike

我正在学习 C++ 形式的 Thinking in C++ V1。我遇到了一个演示继承的例子。就这样

#include <iostream>

class Instrument{
public:
virtual void play(){
std::cout<<"instrument::play()";
}
};

class Wind: public Instrument{
public:
void play(){
std::cout<<"Wind::play()";
}
};

void tune(Instrument& i){
i.play();
}
int _tmain(int argc, _TCHAR* argv[])
{
Wind flute;
tune(flute);
return 0;
}

这会在控制台上输出 Wind::play()

但如果我将方法“调整”更改为

void tune(Instrument i){
i.play();
}

输出将instrument::play()

由于添加了'&'以便传递 flute 的引用而不是拷贝,为什么程序输出 instrument::play() 而不是 Wind::play () ?

最佳答案

因为传递的copy类型是Instrument,而不是类型Wind,因为Instrument是类型该功能需要。这称为“切片”。

关于c++ - 为什么 '&' 会改变对象的行为?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19279368/

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