摘要: Golang 的 fallthrough package main import ( "fmt" ) func main() { a := 2 switch a { case 1: fmt.Println("a=1") case 2: fmt.Println("a=2") fallthrough c 阅读全文
posted @ 2020-06-09 18:48 leafs99 阅读(236) 评论(0) 推荐(0) 编辑