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.
が必要だ:
「クラステンプレート」をクラスの友達にする正しい構文
別の型のフレンド クラスが必要な場合:
template<typename,typename> friend class ClassName;
C++11 では、次のことができます。
template<typename T> class C { friend T; };