-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathmain.go
91 lines (73 loc) · 1.71 KB
/
main.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package main
import "fmt"
type task interface {
execute()
setNext(task)
}
type turnOnLights struct {
next task
}
func (turnOnLights *turnOnLights) execute() {
fmt.Println("Turning the lights on...")
if turnOnLights.next != nil {
turnOnLights.next.execute()
}
}
func (turnOnLights *turnOnLights) setNext(next task) {
turnOnLights.next = next
}
type turnOnComputer struct {
next task
}
func (turnOnComputer *turnOnComputer) execute() {
fmt.Println("Turning the computer on...")
if turnOnComputer.next != nil {
turnOnComputer.next.execute()
}
}
func (turnOnComputer *turnOnComputer) setNext(next task) {
turnOnComputer.next = next
}
type openCodeEditor struct {
next task
}
func (openCodeEditor *openCodeEditor) execute() {
fmt.Println("Opening the code editor...")
if openCodeEditor.next != nil {
openCodeEditor.next.execute()
}
}
func (openCodeEditor *openCodeEditor) setNext(next task) {
openCodeEditor.next = next
}
type code struct {
next task
}
func (code *code) execute() {
fmt.Println("Start coding in go...")
if code.next != nil {
code.next.execute()
}
}
func (code *code) setNext(next task) {
code.next = next
}
func main() {
turnOnLights := &turnOnLights{}
turnOnComputer := &turnOnComputer{}
openCodeEditor := &openCodeEditor{}
code := &code{}
turnOnLights.setNext(turnOnComputer)
turnOnComputer.setNext(openCodeEditor)
openCodeEditor.setNext(code)
turnOnLights.execute()
// Out:
// Turning the lights on...
// Turning the computer on...
// Opening the code editor...
// Start coding in go...
openCodeEditor.execute()
// Out:
// Opening the code editor...
// Start coding in go...
}