Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
クラスのフレンド関数からクラスのプライベート関数を呼び出す方法を教えてください。
プライベート データ メンバーのように。アクセスするだけです:
class A { void foo() {} // private member function friend void bar(); }; void bar() { A a; a.foo(); // access A's privates }