Errore del compilatore C2244
'identifier': impossibile associare la definizione di funzione a una dichiarazione esistente
Un uso insolito dell'operatore unario + è stato usato davanti a una chiamata di funzione che non ha parentesi.
Questo errore si verifica solo nei progetti C++.
L'esempio seguente genera l'errore C2244:
// C2244.cpp
int func(char) {
return 0;
}
int func(int) {
return 0;
}
int main() {
+func; // C2244
}
C2244 può verificarsi anche quando viene usata una firma di funzione non corretta per una funzione membro di un modello di classe.
// C2244b.cpp
// compile with: /c
template<class T>
class XYZ {
void func(T t);
};
template<class T>
void XYZ<T>::func(int i) {} // C2244 wrong function signature
// try the following line instead
// void XYZ<T>::func(T t) {}
C2244 può verificarsi anche quando viene usata una firma di funzione non corretta per un modello di funzione membro.
// C2244c.cpp
// compile with: /c
class ABC {
template<class T>
void func(int i, T t);
};
template<class T>
void ABC::func(int i) {} // C2244 wrong signature
// try the following line instead
// void ABC::func(int i, T t) {}
Non è possibile specializzare parzialmente un modello di funzione.
// C2244d.cpp
template<class T, class U>
class QRS {
void func(T t, U u);
};
template<class T>
void QRS<T,int>::func(T t, int u) {} // C2244