Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » Prblem mit Kopierkonstruktor

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
23.05.2006, 11:25 Uhr
Steffen



Hallo,

ic hhabe mal wieder ein Problem, und zwar bekomme ich folgende Fehlermeldung wegen meinem Kopierkonstruktor:

candidates are: ArrayPriorityQueue::ArrayPriorityQueue(ArrayPriorityQueue& ) ArrayPriorityQueue.h line 29

no matching function for call to `ArrayPriorityQueue::ArrayPriorityQueue(ArrayPriorityQueue)' QueueTest.cpp line 83

Ich hab jetzt schon etliches probiert den Kopierkonstruktor korrekt zu schrieben, aber bis jetzt leider ohne Erfolg .

So sieht die deklaration des Kopierkonstruktor aus:

C++:
    ArrayPriorityQueue(ArrayPriorityQueue & a);




So sieht die Implementierung aus

C++:
ArrayPriorityQueue::ArrayPriorityQueue(ArrayPriorityQueue &a)
{
    cout << "Kopier-Konstruktor" << endl;
    this->gr = a.gr;
    this->entries = new int[this->gr];
    
    for(int i=0; i < this->gr; i++)
        *(this->entries+i) = *(a.entries+i);
}



Und hier wird er aufgerufen/bekomm ich den Fehler

C++:
    ArrayPriorityQueue qaa = fa(qa);




Was mache ich falsch ??

Vielen Dank für jede Hilfe!

Gruß

Steffen

Dieser Post wurde am 23.05.2006 um 11:26 Uhr von Steffen editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
23.05.2006, 12:39 Uhr
virtual
Sexiest Bit alive
(Operator)


ArrayPriorityQueue::ArrayPriorityQueue(const ArrayPriorityQueue &a)
--
Gruß, virtual
Quote of the Month
Ich eß' nur was ein Gesicht hat (Creme 21)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
23.05.2006, 12:51 Uhr
Steffen



super wie schnell man hier immer geholfen bekommt!!

funktioniert

tausend dank!!
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (ANSI-Standard) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: