Go by Example: If/Else

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

Go語言中的If和else的分支結構非常清晰明了。

package mainimport "fmt"func main() {    // 這是一個基本的例子    if 7%2 == 0 {        fmt.Println("7 is even")    } else {        fmt.Println("7 is odd")    }    // 只有if條件的情況    if 8%4 == 0 {        fmt.Println("8 is divisible by 4")    }    // if條件可以包含一個初始設定式,這個運算式中的變數    // 是這個條件判斷結構的局部變數,該變數在所有分支中都是可用的    if num := 9; num < 0 {        fmt.Println(num, "is negative")    } else if num < 10 {        fmt.Println(num, "has 1 digit")    } else {        fmt.Println(num, "has multiple digits")    }}

在Go語言中,你不需要條件兩邊的小括弧,但條件執行代碼兩邊的大括弧不可或缺。

輸出

$ go run if-else.go 7 is odd8 is divisible by 49 has 1 digit

此外,在Go語言中沒有"?:" 的三元運算式,因此即使在基礎條件中,你也需要使用完整的If聲明。


下一個例子:  Go by Example:  Switch.

英文原文

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.