我有這樣的情況:爲什麼不編譯這個代碼?
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)); }
};
而且它不會編譯(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
但是,如果我這樣做:
class Fooey;
void DoStuff(Fooey* pThis);
struct Fooey : public Bar
{
void Blah() { DoStuff(this); }
};
void DoStuff(Fooey* pThis)
{
Foo f;
pThis->Bleh(std::bind(&Foo::Barry, &f));
}
它編譯就好了。這背後的邏輯是什麼?
在第一種情況下試試'&:: Foo :: Barry'。 –
就是這樣!謝謝! –
@MislavBlažević使用來自Foo的公共繼承(或默認的公共結構)。 –