gpt4 book ai didi

c++ - C++ 中的 Static_cast 和虚拟方法

转载 作者:太空宇宙 更新时间:2023-11-03 10:42:48 24 4
gpt4 key购买 nike

在下面的代码中,由于 name() 是虚拟的,我希望调用派生结构的方法。反之,写出的是“A”。为什么?

#include <iostream>
using namespace std;
struct A {
virtual string name() { return "A"; }
};
struct B : A {
string name() { return "B"; }
};
int main (int argc, char *argv[]) {
B b;
cout << static_cast<A>(b).name() << endl;
return 0;
}

最佳答案

static_cast<A>(b)创建类型为 A 的临时变量由 b 构建.所以打电话name()确实调用了 A::name() .

为了观察你可能会做的多态行为

static_cast<A&>(b).name()

关于c++ - C++ 中的 Static_cast 和虚拟方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30958844/

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