完全限定的静态成员变量中的歧义

时间:2016-05-25 18:36:37

标签: c++ multiple-inheritance fully-qualified-naming

在此示例代码中,有两个句子显示相同的静态变量。第一个没有歧义,但第二个没有,为什么?

#include <iostream>

using namespace std;

struct A { static const char a = 'a'; };
struct B : public A { };
struct C : public A { };
struct G : public B, public C { };

int main()
{
    G v;

    cout << G::B::A::a << endl;
    cout << v.B::A::a << endl;
}

GCC错误(根据一些评论,铿锵声中没有歧义):

main.cpp:15:18: error: 'A' is an ambiguous base of 'G'
  cout << v.B::A::a << endl;

Code on coliru

1 个答案:

答案 0 :(得分:5)

这显然是GCC中的一个错误,因为GCC maintainer建议您报告它。但是,在它修复之前,你可以使用这样一个令人讨厌的解决方法:

std::cout << static_cast<B &>(v).A::a;

这样做的好处是,如果在(复杂)场景中,其中一个基类中存在同名变量,这将有助于消除歧义。