Golang學習筆記-1.7 if-else語句

來源:互聯網
上載者:User

本文系第七篇Golang語言學習教程

if-else

if 是條件陳述式
文法如下:

if condition {  }

如果condition為真,則執行{}之間的代碼

Go還有可選的else ifelse語句

if condition {} else if condition {} else {}

else if語句可以有任意數量,從上到下判斷。
如果if 或else if判斷為真,則執行相應的{}中代碼。
如果沒有條件為真,則自動執行else代碼

先寫一個簡單的判斷數字是奇數偶數的程式:

package mainimport "fmt"func main(){    num := 21    if num % 2 == 0 { //如果 num 取 2 的餘數為 0        fmt.Println("this number is env")  //輸出this number is env    } else {        fmt.Println("this number is odd")  //若餘數不為 0 ,則輸出this number is env    }}

if num % 2 == 0用來檢測num 取 2 的餘數是否為 0 。
以上程式輸出:num 取 2 的餘數為 0

if 還有另外一種形式,它包含一個statement可選部分,該條件在條件判斷前運行。
文法如下:

if statement; condition {  }

重寫判斷奇偶數的程式:

package mainimport "fmt"func main(){    if numb := 21; numb % 2 == 0 {        fmt.Println("this number is env")    } else {        fmt.Println("this number is odd")    }}

以上程式中,if是在條件中賦值,所以條件中賦值的變數numb範圍只能在這個if代碼塊中。 如果試圖從外部的ifelse 中訪問numb,編譯器不會通過。

注意:

else 一定要在 if 語句 } 之後,否則會報錯

條件陳述式還有switch語句,下一節將學習switch語句。

以上為學習Golang if-else篇

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.