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
| package main
import "fmt"
// 步骤
func step() func() int {
i := 0
return func() int {
i++
return i
}
}
// 累加器
func accumulator(initial int) func(int) int {
sum := initial
return func(increment int) int {
sum += increment
return sum
}
}
// 打印消息(含给出第几次的消息)
func PrintMessage() func(string) {
count := 0
return func(message string) {
count++
fmt.Printf("Message #%d: %s\n", count, message)
}
}
func main() {
nextStep := step()
fmt.Println(nextStep()) // 1
fmt.Println(nextStep()) // 2
fmt.Println(nextStep()) // 3
a := accumulator(10)
fmt.Println(a(5)) // 15
fmt.Println(a(8)) // 23
fmt.Println(a(-3)) // 20
pm := PrintMessage()
pm("Hello") // Message #1: Hello
pm("World") // Message #2: World
}
|