次の方法で共有


コンパイラ エラー C2977

'identifier': 型引数が多すぎます

ジェネリックまたはテンプレートの実引数が多すぎます。 ジェネリックまたはテンプレート宣言を確認して、正しい数のパラメーターを調べてください。

次の例では C2977 が生成されます。

// C2977.cpp
// compile with: /c
template<class T, int i>
class MyClass {};

template MyClass< int , 1, 1 >;   // C2977
template MyClass< int , 1 >;   // OK

C2977 は、ジェネリックを使用しているときも発生する場合があります。

// C2977b.cpp
// compile with: /clr
// C2977 expected
generic <class T, class U>
void f(){}

generic <class T>
ref struct GC1 {};

int main() {
   // Delete the following 2 lines to resolve.
   GC1<int, char> ^ pgc1;
   f<int,int,int>();

   // OK
   GC1<int> ^ pgc1;
   f<int, int>();
}