码迷,mamicode.com
首页 > 其他好文 > 详细

go if for while 的使用

时间:2019-09-23 09:43:29      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:filename   表达   nil   hello   printf   name   cas   pre   his   

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 的使用

标签:filename   表达   nil   hello   printf   name   cas   pre   his   

原文地址:https://www.cnblogs.com/paulversion/p/11570411.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!