gpt4 book ai didi

c++ - 在不转换对象的情况下调用子类方法

转载 作者:行者123 更新时间:2023-11-30 02:34:34 26 4
gpt4 key购买 nike

我的类结构如下所示:

class A {
public:
A();

virtual void doSomething() {
qDebug() << "Hello from class A";
}
};

class B : public A {
public:
B();

void doSomething() {
qDebug() << "Hello from class B";
}
};

class C : public A {
public:
C();

void doSomething() {
qDebug() << "Hello from class C";
}
};

在其他地方我有这样的方法:

void doSomethingElse(const A argument = A()) {
argument.doSomething();
}

每次调用 doSomethingElse 时,我都会得到“Hello from class A”输出,即使我将 B 类或 C 类的实例作为参数传递也是如此。我在这里做错了什么?

最佳答案

需要通过引用传递:

void doSomethingElse(const A& argument = A()) {
argument.doSomething();
}

如果不通过引用传递,则参数成为参数的拷贝,并且仅复制参数的 A 部分。 doSomething() 然后在 A 上被调用,而不是您最初作为参数传递的对象。

关于c++ - 在不转换对象的情况下调用子类方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34465945/

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