-
Notifications
You must be signed in to change notification settings - Fork 4
/
person.go
77 lines (62 loc) · 1.04 KB
/
person.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package ch6
import "fmt"
// Component
type ComponentPerson interface {
Show()
}
type Person struct {
name string
}
func (p *Person) SetName(name string) {
p.name = name
}
func (p *Person) Show() {
fmt.Println("装扮的", p.name)
}
// Decorator
type Finery struct {
component ComponentPerson
Person
}
func (f *Finery) Decorate(component ComponentPerson) {
f.component = component
}
func (f *Finery) Show() {
f.component.Show()
}
// ConcreteDecorator
type TShirts struct {
Finery
}
func (t *TShirts) Show() {
fmt.Print("大T恤 ")
t.Finery.Show()
}
// ConcreteDecorator
type BigTrouser struct {
Finery
}
func (b *BigTrouser) Show() {
fmt.Print("垮裤 ")
b.Finery.Show()
}
// ConcreteDecorator
type Sneakers struct {
Finery
}
func (s *Sneakers) Show() {
fmt.Print("破球鞋 ")
s.Finery.Show()
}
// client
func DecoratorMain() {
person := &Person{name: "小菜"}
fmt.Println("第一种装扮")
sneaker := &Sneakers{}
bt := &BigTrouser{}
ts := &TShirts{}
sneaker.Decorate(person)
bt.Decorate(sneaker)
ts.Decorate(bt)
ts.Show()
}