-
-
Save yanjinbin/9501ba8581a6cd449774b1bacac2126c to your computer and use it in GitHub Desktop.
Golang Builder pattern
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "strconv" | |
import "fmt" | |
type Color string | |
type Make string | |
type Model string | |
const ( | |
BLUE Color = "blue" | |
RED = "red" | |
) | |
type Car interface { | |
Drive() string | |
Stop() string | |
} | |
type CarBuilder interface { | |
TopSpeed(int) CarBuilder | |
Paint(Color) CarBuilder | |
Build() Car | |
} | |
type carBuilder struct { | |
speedOption int | |
color Color | |
} | |
func (cb *carBuilder) TopSpeed(speed int) CarBuilder { | |
cb.speedOption = speed | |
return cb | |
} | |
func (cb *carBuilder) Paint(color Color) CarBuilder { | |
cb.color = color | |
return cb | |
} | |
func (cb *carBuilder) Build() Car { | |
return &car{ | |
topSpeed: cb.speedOption, | |
color: cb.color, | |
} | |
} | |
func New() CarBuilder { | |
return &carBuilder{} | |
} | |
type car struct { | |
topSpeed int | |
color Color | |
} | |
func (c *car) Drive() string { | |
return "Driving at speed: " + strconv.Itoa(c.topSpeed) | |
} | |
func (c *car) Stop() string { | |
return "Stopping a " + string(c.color) + " car" | |
} | |
func main() { | |
builder := New() | |
car := builder.TopSpeed(50).Paint(BLUE).Build() | |
fmt.Println(car.Drive()) | |
fmt.Println(car.Stop()) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment