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.
クラスプライベートスコープでテンプレート変数を定義する際に問題に直面しています
private: template<class T>;
Visual C ++ 2010を使用しているので、何が問題になっていますか。
変数名がありません。また、そのようなテンプレート化されたメンバー変数を宣言することはできません。クラスをテンプレート化し、 を使用して変数の型を定義する必要がありますT。
T
template < class T > class A { T var; };