gpt4 book ai didi

c++ - 死亡钻石和范围解析运算符 (c++)

转载 作者:IT老高 更新时间:2023-10-28 21:43:42 30 4
gpt4 key购买 nike

我有这个代码(菱形继承(钻石问题)):

#include <iostream>
using namespace std;

struct Top
{
void print() { cout << "Top::print()" << endl; }
};

struct Right : Top
{
void print() { cout << "Right::print()" << endl; }
};

struct Left : Top
{
void print() { cout << "Left::print()" << endl; }
};

struct Bottom: Right, Left{};

int main()
{
Bottom b;
b.Right::Top::print();
}

我想在 Top 类中调用 print()

当我尝试编译它时,我收到错误:'Top' is an ambiguous base of 'Bottom' on this line: b.Right::Top::print(); 为什么会模棱两可?我明确指定我想要 Top 来自 Right 而不是来自 Left

我不想知道怎么做,是的,它可以通过引用、虚拟继承等来完成。我只想知道为什么是 b.Right::Top::print(); 模棱两可。

最佳答案

Why is it ambiguous? I explicitly specified that I want Top from Right and not from Left.

这是您的意图,但实际情况并非如此。 Right::Top::print() 显式命名您要调用的成员函数,即&Top::print。但它没有指定我们在 b 的哪个子对象上调用该成员函数。您的代码在概念上等同于:

auto print = &Bottom::Right::Top::print;  // ok
(b.*print)(); // error

选择 print 的部分是明确的。从 bTop 的隐式转换是模棱两可的。您必须通过执行以下操作来明确区分您要进入的方向:

static_cast<Right&>(b).Top::print();

关于c++ - 死亡钻石和范围解析运算符 (c++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36779466/

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