从博客文章访问私人成员:Johannes Schaub 的更安全的肮脏- litb:
template<typename Tag, typename Tag::type M>
struct Rob {
friend typename Tag::type get(Tag) {
return M;
}
};
// use
struct A {
A(int a):a(a) { }
private:
int a;
};
// tag used to access A::a
struct A_f {
typedef int A::*type;
friend type get(A_f);
};
template struct Rob<A_f, &A::a>;
int main() {
A a(42);
std::cout << "proof: " << a.*get(A_f()) << std::endl;
}
由于内部未定义函数,如何get
从对象调用函数?a
class A
编辑:
我不明白为什么 get 必须有 Tag 作为参数而不是 a.*get<A_f>()
=> 好的,这是由于 ADL 机制