Una notevole differenza tra costruttore e fabbrica che ho potuto capire era la seguente
supponiamo di avere una macchina
class Car
{
bool HasGPS;
bool IsCityCar;
bool IsSportsCar;
int Cylenders;
int Seats;
public:
void Car(bool hasGPs=false,bool IsCityCar=false,bool IsSportsCar=false, int Cylender=2, int Seats=4);
};
Nell'interfaccia sopra possiamo ottenere l'auto nel modo seguente:
int main()
{
BadCar = new Car(false,false,true,4,4);
}
ma cosa succede se si verificano delle eccezioni durante la creazione dei posti ??? NON RICEVERAI L'OGGETTO // MA MA
supponiamo di avere un'implementazione come la seguente
class Car
{
bool mHasGPS;
bool mIsCityCar;
bool mIsSportsCar;
int mCylenders;
int mSeats;
public:
void Car() : mHasGPs(false), mIsCityCar(false), mIsSportsCar(false), mCylender(2), mSeats(4) {}
void SetGPS(bool hasGPs=false) {mHasGPs = hasGPs;}
void SetCity(bool CityCar) {mIsCityCar = CityCar;}
void SetSports(bool SportsCar) {mIsSportsCar = SportsCar;}
void SetCylender(int Cylender) {mCylenders = Cylender;}
void SetSeats(int seat) {mSeats = seat;}
};
class CarBuilder
{
Car* mCar;
public:
CarBuilder():mCar(NULL) { mCar* = new Car(); }
~CarBuilder() { if(mCar) { delete mCar; }
Car* GetCar() { return mCar; mCar=new Car(); }
CarBuilder* SetSeats(int n) { mCar->SetSeats(n); return this; }
CarBuilder* SetCylender(int n) { mCar->SetCylender(n); return this; }
CarBuilder* SetSports(bool val) { mCar->SetSports(val); return this; }
CarBuilder* SetCity(bool val) { mCar->SetCity(val); return this; }
CarBuilder* SetGPS(bool val) { mCar->SetGPS(val); return this; }
}
Ora puoi creare così
int main()
{
CarBuilder* bp =new CarBuilder;
Car* NewCar = bp->SetSeats(4)->SetSports(4)->SetCity(ture)->SetGPS(false)->SetSports(true)->GetCar();
bp->SetSeats(2);
bp->SetSports(4);
bp->SetCity(ture);
bp->SetSports(true)
Car* Car_II= bp->GetCar();
}
Qui nel secondo caso, anche se un'operazione fallisce, otterresti comunque l'auto.
Potrebbe essere che l'auto non funzioni perfettamente più tardi ma, avresti l'oggetto.
Perché il metodo Factory ti dà l'auto in una sola chiamata, mentre il costruttore costruisce uno per uno.
Tuttavia, dipende dalle esigenze del degnato di chi scegliere.