Go——switch
Posted coder1013
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go——switch相关的知识,希望对你有一定的参考价值。
package main
import "fmt"
func main() {
/* 定义局部变量 */
var grade string = "B"
var marks int = 90
switch marks {
case 90: grade = "A"
case 80: grade = "B"
case 50,60,70 : grade = "C" // 等于 50 || 60 || 70的条件下执行
default: grade = "D"
}
switch {
case grade == "A" :
fmt.Printf("优秀!
" )
case grade == "B", grade == "C" :
fmt.Printf("良好
" )
case grade == "D" :
fmt.Printf("及格
" )
case grade == "F":
fmt.Printf("不及格
" )
default:
fmt.Printf("差
" );
}
fmt.Printf("你的等级是 %s
", grade );
}
fallthrough
使用 fallthrough 会强制执行后面的 case 语句,fallthrough 不会判断下一条 case 的表达式结果是否为 true。
package main
import "fmt"
func main() {
switch {
case false:
fmt.Println("1、case 条件语句为 false")
fallthrough
case true:
fmt.Println("2、case 条件语句为 true")
fallthrough
case false:
fmt.Println("3、case 条件语句为 false")
fallthrough
case true:
fmt.Println("4、case 条件语句为 true")
case false:
fmt.Println("5、case 条件语句为 false")
fallthrough
default:
fmt.Println("6、默认 case")
}
}
以上是关于Go——switch的主要内容,如果未能解决你的问题,请参考以下文章
go语音基础之switch语句 和 fallthrough 用途
[Go] 通过 17 个简短代码片段,切底弄懂 channel 基础
解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段