switch
# Node.js
const value = "b";
switch (value) {
case "a":
console.log("A");
break;
case "b":
console.log("B");
break;
case "c":
console.log("C");
break;
default:
console.log("first default");
}
switch (value) {
case "a":
console.log("A - falling through");
case "b":
console.log("B - falling through");
case "c":
console.log("C - falling through");
default:
console.log("second default");
}
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
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
Output
B
B - falling through
C - falling through
second default
1
2
3
4
2
3
4
# Go
package main
import "fmt"
func main() {
value := "b"
switch value {
case "a":
fmt.Println("A")
case "b":
fmt.Println("B")
case "c":
fmt.Println("C")
default:
fmt.Println("first default")
}
switch value {
case "a":
fmt.Println("A - falling through")
fallthrough
case "b":
fmt.Println("B - falling through")
fallthrough
case "c":
fmt.Println("C - falling through")
fallthrough
default:
fmt.Println("second default")
}
}
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
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
Output
B
B - falling through
C - falling through
second default
1
2
3
4
2
3
4
编辑 (opens new window)
上次更新: 2022/09/30, 11:34:22