c – 为什么这段代码不编译?
发布时间:2020-12-16 09:47:05 所属栏目:百科 来源:网络整理
导读:我有这样的情况: 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).有错误: tes
我有这样的情况:
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)); } 它编译得很好.这背后的逻辑是什么? 解决方法
这里
struct Fooey : public Bar { void Blah() { Foo f; Bar::Bleh(std::bind(&Foo::Barry,&f)); } }; Foo的名称查找找到Bar的基类,这是因为Bar私有地继承而无法访问. 要修复它,请完全限定名称: void Blah() { ::Foo f; Bar::Bleh(std::bind(&::Foo::Barry,&f)); } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |