go if for while 的使用
Posted paulversion
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go if for while 的使用相关的知识,希望对你有一定的参考价值。
fileName := "a.txt"
contents ,err := ioutil.ReadFile(fileName)
if err != nil
fmt.Println("文件不存在")
else
fmt.Printf("%s\n",contents)
fileName := "a.txt"
if contents ,err := ioutil.ReadFile(fileName);err!=nil
fmt.Println("文件不存在")
else
fmt.Printf("%s\n",contents)
go 语言的switch 默认会加break
var c = 2
switch c
case 1 :
fmt.Print(c)
case 2:
fmt.Print("hello")
case 3:
fmt.Print("world")
default:
fmt.Println("this is the end")
switch 后面可以不跟表达式
var score = 80
switch
case score >90 :
fmt.Print(score)
case score >80:
fmt.Print("hello")
case score >70:
fmt.Print("world")
default:
fmt.Println("this is the end")
以上是关于go if for while 的使用的主要内容,如果未能解决你的问题,请参考以下文章
Go 处理大数组:使用 for range 还是 for 循环?