MSVC声称无法访问公共成员

时间:2019-02-11 10:31:54

标签: c++ visual-c++

我有一个带有公共枚举成员的结构:

namespace A {
    struct Events {
        enum CUES { CLEAR, DATA, ERROR };
        virtual void Event(CUES) = 0;
    protected:
        ~Events() {}
    };
}

当我尝试从另一个类访问CLEAR时,编译器会产生一条错误消息,指出它不可访问。

这是代码和错误:

namespace B {
    class Base: A::Events{
        void Event(Events::CUES){}
    protected:
        Events::CUES lastCue;
    };

    class Impl: public Base {
        bool test(){
            return (lastCue == A::Events::CLEAR);
        }
    };
}

somefile(19): error C2247: 'A::Events::CLEAR' not accessible because 'B::Base' uses 'private' to inherit from 'A::Events'

somefile(3): note: see declaration of 'A::Events::CLEAR'

如何获取公共枚举?

更新gcc似乎可以毫无问题地进行编译。

1 个答案:

答案 0 :(得分:2)

我想出的解决方案是通过全局名称空间更改访问路由:

namespace B {
    class Impl: public Base {
        bool test(){
            return (lastCue == ::A::Events::CLEAR);
        }                   // ^^
    };
}

这可以避免对Base进行任何更改。