结构型-装饰器模式

结构型-装饰器模式(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

// IDraw IDraw
type IDraw interface {
Draw() string
}

// Square 正方形
type Square struct{}

// Draw Draw
func (s Square) Draw() string {
return "this is a square"
}

// ColorSquare 有颜色的正方形
type ColorSquare struct {
square IDraw
color string
}

// NewColorSquare NewColorSquare
func NewColorSquare(square IDraw, color string) ColorSquare {
return ColorSquare{color: color, square: square}
}

// Draw Draw
func (c ColorSquare) Draw() string {
return c.square.Draw() + ", color is " + c.color
}