搜索优雅且非侵入性的方式来访问类的私有方法

时间:2016-09-22 20:35:53

标签: c++ templates template-meta-programming

免责声明:这绝不会在生产代码中使用。这是对C ++边缘的探索:)

根据与@Johannes Schaub的讨论,我的问题是跟进: calling private methods in c++

我在他的博客上发现了一个非常简短的私人会员访问解决方案: http://bloglitb.blogspot.de/2011/12/access-to-private-members-safer.html

以下是一个示例:

#include <iostream>
using namespace std;

// example class
struct A {
  A(int a, double b):_a(a),_b(b) { }
private:
  int _a;
  double _b;
  int f() { return _a; }
public:
};

//Robber template: provides a legal way to access a member
template<typename Tag, typename Tag::type M>
struct Rob { 
  friend typename Tag::type get(Tag) {
    return M;
  }
};
// tag used to access A::_a
struct A_access_a 
{ 
  typedef int A::*type;
  friend type get(A_access_a);
};

// Explicit instantiation; the only place where it is legal to pass the address of a private member.
template struct Rob<A_access_a, &A::_a>;

int main() {

    A sut(42, 2.2);

    int a = sut.*get(A_access_a());
    cout << a << endl;

    return 0;
}

我想知道这种非常优雅的方法是否可以重用来从类外部访问私有方法。

我想要的是方法调用的简单方法:

struct A_access_f
{
    typedef int (A::*type)();
    friend type get(A_access_f);
};
template struct Rob<A_access_f, &A::f>;

是否可以让它运行?

这是我迄今为止最好的尝试:

typedef int (A::*pf)();
pf func = sut.*get(A_access_f());

我的编译器仍在抱怨:

  

prog.cpp:45:33:错误:无效使用非静态成员函数     pf func = sut。* get(A_access_f());

1 个答案:

答案 0 :(得分:1)

你快到了。这是你应该写的:

typedef int (A::*pf)();
const pf func = get(A_access_f());
int a = (sut.*func)();

或作为(难以消化的)单行:

int a = (sut.*get(A_access_f()))();