基于以下
answer到最近的
question,我可以使用一个函数指针,以便从另一个类Bar调用私有方法Foo< T> :: foo(),如下所示(另见
ideone)
#include <iostream> template<typename T> struct Bar { typedef void (T::*F)(); Bar( T& t_,F f ) : t( t_ ),func( f ) { } void operator()() { (t.*func)(); } F func; T& t; }; template<typename T> class Foo { private: void foo() { std::cout << "Foo<T>::foo()" << std::endl; } public: Foo() : bar( *this,&Foo::foo ) { bar(); } Bar<Foo<T> > bar; }; int main() { Foo<int> foo; }
这适用于MSVC 2013和GCC 4.8.3.是否有效?
解决方法
是的,这是允许的,它是有效的.
C++ Programming by Bjarne Stroustoup
C++ protects against accident rather than deliberate circumvention
(fraud)