0

谁能告诉我如何从该类的朋友函数中调用该类的私有函数

4

1 回答 1

3

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

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

void bar() {
    A a;
    a.foo(); // access A's privates
}
于 2013-02-15T00:42:21.567 回答