awesome-patterns/creational/abstract_factory/car_factory.go
2018-01-14 15:43:41 +10:00

25 lines
378 B
Go

package main
import (
"errors"
"fmt"
)
const (
LuxuryCarType = 1
FamilyCarType = 2
)
type CarFactory struct{}
func (c *CarFactory) NewVehicle(v int) (Vehicle, error) {
switch v {
case LuxuryCarType:
return new(LuxuryCar), nil
case FamilyCarType:
return new(FamilyCar), nil
default:
return nil, errors.New(fmt.Sprintf("Vehicle of type %d not exist\n", v))
}
}