go-pattern-examples/creation/06_builder/builder.go
2020-04-27 12:49:49 +08:00

83 lines
1.5 KiB
Go

package builder
//ICar 汽车,我们要造车了
//ICar 车具有以下能力
type ICar interface {
Speed() int
Brand() string
}
//ICarBuilder 造一辆车需要具有的部件
type ICarBuilder interface {
Wheel(wheel int) ICarBuilder
Engine(engine string) ICarBuilder
Speed(max int) ICarBuilder
Brand(brand string) ICarBuilder
Build() ICar
}
//CarProto 车的原型
type CarProto struct {
Wheel int
Engine string
MaxSpeed int
BrandName string
}
//Speed 最大车速
func (c *CarProto) Speed() int {
return c.MaxSpeed
}
//Brand 车品牌
func (c *CarProto) Brand() string {
return c.BrandName
}
//CarStudio 打算通过成立造车实验室进行造车
type CarStudio struct {
prototype CarProto
}
// NewCarStudio 造车工作室
func NewCarStudio() ICarBuilder {
return &CarStudio{}
}
// Wheel of car
func (c *CarStudio) Wheel(wheel int) ICarBuilder {
c.prototype.Wheel = wheel
return c
}
// Engine of car
func (c *CarStudio) Engine(engine string) ICarBuilder {
c.prototype.Engine = engine
return c
}
// Speed of car
func (c *CarStudio) Speed(max int) ICarBuilder {
c.prototype.MaxSpeed = max
return c
}
// Brand of car
func (c *CarStudio) Brand(brand string) ICarBuilder {
c.prototype.BrandName = brand
return c
}
// Build return a car
func (c *CarStudio) Build() ICar {
car := &CarProto{
Wheel: c.prototype.Wheel,
Engine: c.prototype.Engine,
MaxSpeed: c.prototype.MaxSpeed,
BrandName: c.prototype.BrandName,
}
return car
}