-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrol_structure_idiom_6.go
92 lines (82 loc) · 1.38 KB
/
control_structure_idiom_6.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
92
package main
import (
"fmt"
"time"
)
func showBreakStopWhere() {
exit := make(chan interface{})
go func() {
for {
select {
case <-time.After(time.Second):
fmt.Println("tick")
case <-exit:
fmt.Println("exiting...")
break
}
}
fmt.Println("exit!")
}()
time.Sleep(3 * time.Second)
exit <- struct{}{}
// wait child goroutine exit
time.Sleep(3 * time.Second)
}
func showBreakStopWhere2() {
exit := make(chan int)
go func() {
outloop:
for {
select {
case <-time.After(time.Second):
fmt.Println("tick2")
// outloop:
for {
select {
case <-time.After(time.Second):
fmt.Println("tick")
case <-exit:
fmt.Println("exiting")
break outloop // jump to outloop position to continue
}
}
}
}
}()
time.Sleep(3 * time.Second)
exit <- 1
time.Sleep(3 * time.Second)
}
func showBreakAndContinueLabelWhere2() {
// find the first element which is larger than 5 in every group
sl := [][]int{
{1, 2, 3},
{4, 5, 6},
{7, 8, 9},
}
r := make([]int, 0, 9)
for _, v := range sl {
outloop:
for _, e := range v {
if e > 5 {
r = append(r, e)
break outloop
}
}
}
fmt.Println(r)
for _, v := range sl {
label:
for _, e := range v {
if e > 5 {
r = append(r, e)
continue label
}
}
}
fmt.Println(r)
}
func main() {
// showBreakStopWhere2()
showBreakAndContinueLabelWhere2()
}