Errore del compilatore C2977
'identifier': troppi argomenti di tipo
Un oggetto generico o modello contiene troppi argomenti effettivi. Controllare la dichiarazione generica o di modello per trovare il numero corretto di parametri.
L'esempio seguente genera l'errore C2977:
// C2977.cpp
// compile with: /c
template<class T, int i>
class MyClass {};
template MyClass< int , 1, 1 >; // C2977
template MyClass< int , 1 >; // OK
L'errore C2977 può verificarsi anche quando si usano i generics:
// 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>();
}