如何从C ++中的友元函数访问私有函数?

时间:2013-02-15 00:39:59

标签: c++ oop

任何人都可以告诉我如何从该类的朋友函数调用类的私有函数

1 个答案:

答案 0 :(得分:3)

就像私人数据成员一样。只需访问它:

class A
{
  void foo() {}     // private member function
  friend void bar();
};

void bar() {
    A a;
    a.foo(); // access A's privates
}