Konstruktoren

MrDude

Mitglied
Guten Anbend erstmall - oder fast schon morgen :-),

falles jemand von euch sich mit java auskennt, weiß der bestimmt das man konstruktoren mit dem this-befehl verketten kann Bsp.

public Auto()
{
this(0,0); //sucht einen konstruktor der zwei int werte aufnimmt
}

public Auto(int x , int y)
{
this.x = x;
this.y =y;
}

kann mir jemand sagen, ob es eine solche verkettung in c++ gibt und wie sie funktioniert

vielen dank im voraus

mrdude
:-)
 
Ich weiß jetzt nicht so ganz, ob du das meinst aber hier mal mein
Vorschlag :-) :
Code:
class Auto
{
private:
    int _x,_y;
public:
   //Konstruktor 1
   Auto()
   {
       Auto(0,0);
   }

   //Konstruktor 2 
   Auto(int x, int y)
   {
        this._x = x;
        this._y = y; 
   }

   //Dekonstruktor
   ~Auto();
};

Müsste so funktionieren ;-)
Gruß, Christian
 
Zurück