05 | 程序结构

2020-03-21  本文已影响0人  刀斧手何在

条件判断

if var declaration; condition{

}
if v,err = someFun();err != nil{

}else{

}
//调用某函数,正确做啥事,错误做啥事

switch

func TestSwitch(t *testing.T){
    for i:=0; i<5; i++ {
        switch i {
        case 0,2:
            t.Log("0 or 2")
        case 1,3:
            t.Log("1 or 3")
        default:
            t.Log(i)
        }
    }
}

循环

go 语言的循环只有for 关键字

func TestWhile(t *testing.T)  {
    n := 0
    for n < 5 {
        t.Log(n)
        n++
    }
}
func TestWhile(t *testing.T)  {
    for   {
        t.Log("hello world\n")
    }
}
func TestFor(t *testing.T){
    for i:=0; i<5; i++ {
        t.Log(i)
    }
}

其他

上一篇 下一篇

猜你喜欢

热点阅读