ich habe ein aktuelles Debian SID und versuche grade ein kleines C++ Programm zu kompilieren. Dabei wird mir dauernd diese Fehlermeldung um die Ohren gehauen:
Die Funktion dazu:IntArray.cpp: In constructor `IntArray::IntArray(int*, int)':
IntArray.cpp:56: error: declaration of `anzahl' shadows a parameter
Code: Alles auswählen
IntArray::IntArray(int * a, int anzahl){
IntArray(anzahl); /* Zeile 56 */
for(int i = 0; i < this -> GetAnz(); i++)
{
(*this)[i+1] = a[i];
}
}
Danke
Schorsch