다음을 통해 공유


컴파일러 오류 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>();
}