mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2025-04-09 03:52:03 +00:00
builder pattern
This commit is contained in:
parent
2b797ef4dc
commit
131bd3cec7
1 changed files with 49 additions and 0 deletions
49
creational/builder/builder.go
Normal file
49
creational/builder/builder.go
Normal file
|
@ -0,0 +1,49 @@
|
|||
package builder
|
||||
|
||||
type BuildProcess interface {
|
||||
SetWheels() BuildProcess
|
||||
SetSeats() BuildProcess
|
||||
SetStructure() BuildProcess
|
||||
GetVehicle() VehicleProduct
|
||||
}
|
||||
|
||||
type VehicleProduct struct {
|
||||
Wheels int
|
||||
Seats int
|
||||
Structure string
|
||||
}
|
||||
|
||||
type CarBuilder struct {
|
||||
v VehicleProduct
|
||||
}
|
||||
|
||||
func (c *CarBuilder) SetWheels() BuildProcess {
|
||||
c.v.Wheels = 2
|
||||
return c
|
||||
}
|
||||
|
||||
func (c *CarBuilder) SetSeats() BuildProcess {
|
||||
c.v.Seats = 5
|
||||
return c
|
||||
}
|
||||
|
||||
func (c *CarBuilder) SetStructure() BuildProcess {
|
||||
c.v.Structure = "Car"
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *CarBuilder) GetVehicle() VehicleProduct {
|
||||
return c.v
|
||||
}
|
||||
|
||||
type ManufactureDirector struct {
|
||||
builder BuildProcess
|
||||
}
|
||||
|
||||
func (f *ManufactureDirector) SetBuilder(b BuildProcess) {
|
||||
f.builder = b
|
||||
}
|
||||
|
||||
func (f *ManufactureDirector) Construct() {
|
||||
f.builder.SetSeats().SetStructure().SetWheels()
|
||||
}
|
Loading…
Add table
Reference in a new issue