golang学习的点点滴滴:if、switch使用

前端之家收集整理的这篇文章主要介绍了golang学习的点点滴滴:if、switch使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
funcmain(){
	ifa:=0;a==0{
		fmt.Println(a)
	}

	fmt.Println("-----")

	b:=0
	switchb{
		case1:
			fmt.Println(1)
		case0:
			fallthrough
		case2:
			fmt.Println("heihei")
	}

	fmt.Println("-----")

	switch{
		caseb>1&&b<10:
			fmt.Println("hahah")
		caseb>-2&&b<3:
			fmt.Println("ok")
	}
}
原文链接:https://www.f2er.com/go/190764.html

猜你在找的Go相关文章