结构型-装饰器模式(Decorator Design Pattern)

定义
装饰器主要用于解决继承过于复杂的问题,通过组合代替继承。他主要作用是给原始类添加增强功能
应用场景
继承关系复杂,需要对基类进行功能增强的场景(Java Stream)
go源码实现
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| package decorator
type IDraw interface { Draw() string }
type Square struct{}
func (s Square) Draw() string { return "this is a square" }
type ColorSquare struct { square IDraw color string }
func NewColorSquare(square IDraw, color string) ColorSquare { return ColorSquare{color: color, square: square} }
func (c ColorSquare) Draw() string { return c.square.Draw() + ", color is " + c.color }
|