1. 首页
  2. 数据库
  3. 其它
  4. Go流程控制2:switch

Go流程控制2:switch

上传者: 2021-01-17 02:27:53上传 PDF文件 29KB 热度 22次
基本语法 switch 变量(表达式){ case 值1: 语句块 case 值2: 语句块 ...... default: 语句块 } 示例 package main import fmt func main(){ var score int = 69 switch score{ case 90: fmt.Println(A) case 80: fmt.Println(B) case 70,60,50: //1.支持多个条件的匹配 //2.不同的case之间不需要break fmt.Print
用户评论