小编Mis*_*vić的帖子

为什么这段代码不编译?

我有这样的情况:

struct Foo
{
    void Barry() { }
};

struct Bar : private Foo
{
    template <class F> void Bleh(F Func) { Func(); }
};

struct Fooey : public Bar
{
    void Blah() { Foo f; Bar::Bleh(std::bind(&Foo::Barry, &f)); }
};
Run Code Online (Sandbox Code Playgroud)

它不编译(g ++ 4.7.3).有错误:

test.cpp: In member function ‘void Fooey::Blah()’:
test.cpp:4:1: error: ‘struct Foo Foo::Foo’ is inaccessible
test.cpp:15:23: error: within this context
test.cpp:4:1: error: ‘struct Foo Foo::Foo’ is inaccessible
test.cpp:15:47: error: within this context
Run Code Online (Sandbox Code Playgroud)

但是,如果我这样做:

class Fooey;
void DoStuff(Fooey* pThis);

struct …
Run Code Online (Sandbox Code Playgroud)

c++ gcc compiler-errors class

3
推荐指数
1
解决办法
134
查看次数

标签 统计

c++ ×1

class ×1

compiler-errors ×1

gcc ×1