awesome-patterns/creational/abstract_factory/car_factory.go

25 lines
378 B
Go
Raw Normal View History

2018-01-14 08:43:41 +03:00
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))
}
}