c – 能够使用指向函数的指针来调用外部类的私有方法

前端之家收集整理的这篇文章主要介绍了c – 能够使用指向函数的指针来调用外部类的私有方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
基于以下 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)

当然,你不能直接/轻松地调用课外的私人方法,但是如果你付出了很多努力,C就会允许它.

原文链接:https://www.f2er.com/c/112752.html

猜你在找的C&C++相关文章