-
-
Save sirenko/d29ca70afab58aaab80c8b4cb6e68c0a to your computer and use it in GitHub Desktop.
Golang Builder pattern
This file contains hidden or 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
// Go, builder design pattern | |
// | |
// Go playground URL: https://play.golang.org/p/ArweZ3i7Puc | |
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