濮阳杆衣贸易有限公司

主頁 > 知識庫 > Go語言中的if條件語句使用詳解

Go語言中的if條件語句使用詳解

熱門標(biāo)簽:電梯外呼訪客系統(tǒng) 谷歌便利店地圖標(biāo)注 騰訊外呼系統(tǒng)價格 ?兓? 最短的地圖標(biāo)注 成都呼叫中心外呼系統(tǒng)平臺 電銷機(jī)器人可以補(bǔ)救房產(chǎn)中介嗎 百度地圖標(biāo)注搜索關(guān)鍵詞 浙江人工智能外呼管理系統(tǒng)

if語句
if語句包含一個布爾表達(dá)式后跟一個或多個語句。

語法
if語句在Go編程語言的語法是:

復(fù)制代碼 代碼如下:

if(boolean_expression)
{
   /* statement(s) will execute if the boolean expression is true */
}

如果布爾表達(dá)式的值為 true,那么if語句里面代碼塊將被執(zhí)行。如果if語句的結(jié)束(右大括號后)布爾表達(dá)式的值為false,那么語句之后第一行代碼會被執(zhí)行。

流程圖:

例子:

復(fù)制代碼 代碼如下:

package main

import "fmt"

func main() {
   /* local variable definition */
   var a int = 10
 
   /* check the boolean condition using if statement */
   if( a 20 ) {
       /* if condition is true then print the following */
       fmt.Printf("a is less than 20\n" )
   }
   fmt.Printf("value of a is : %d\n", a)
}


讓我們編譯和運(yùn)行上面的程序,這將產(chǎn)生以下結(jié)果:

a is less than 20;
value of a is : 10


if...else語句
if語句可以跟著一個可選的else語句,布爾表達(dá)式是假時它被執(zhí)行。

語法
在Go編程語言中的if ... else語句的語法是:

復(fù)制代碼 代碼如下:

if(boolean_expression)
{
   /* statement(s) will execute if the boolean expression is true */
}
else
{
  /* statement(s) will execute if the boolean expression is false */
}

如果布爾表達(dá)式的值為true,那么if代碼塊將被執(zhí)行,否則else代碼塊將被執(zhí)行。

流程圖:

例子:

復(fù)制代碼 代碼如下:

package main

import "fmt"

func main() {
   /* local variable definition */
   var a int = 100;
 
   /* check the boolean condition */
   if( a 20 ) {
       /* if condition is true then print the following */
       fmt.Printf("a is less than 20\n" );
   } else {
       /* if condition is false then print the following */
       fmt.Printf("a is not less than 20\n" );
   }
   fmt.Printf("value of a is : %d\n", a);

}


當(dāng)上述代碼被編譯和執(zhí)行時,它產(chǎn)生了以下結(jié)果:

a is not less than 20;
value of a is : 100

 if...else if...else 語句
if語句可以跟著一個可選的else if ... else語句,這是非常有用的使用單個 if...else if 語句聲明測試各種條件。

當(dāng)使用if , else if , else語句有幾點要記住使用:

if可以有零或一個else,它必須跟從else if后面。

一個if可以有零到個多else if并且它們必須在else之前。

一旦一個else if測試成功,其它任何剩余else if將不會被測試。

語法
if...else if...else在Go編程語言中語句的語法是:

復(fù)制代碼 代碼如下:

if(boolean_expression 1)
{
   /* Executes when the boolean expression 1 is true */
}
else if( boolean_expression 2)
{
   /* Executes when the boolean expression 2 is true */
}
else if( boolean_expression 3)
{
   /* Executes when the boolean expression 3 is true */
}
else
{
   /* executes when the none of the above condition is true */
}

例子:
復(fù)制代碼 代碼如下:

package main

import "fmt"

func main() {
   /* local variable definition */
   var a int = 100
 
   /* check the boolean condition */
   if( a == 10 ) {
       /* if condition is true then print the following */
       fmt.Printf("Value of a is 10\n" )
   } else if( a == 20 ) {
       /* if else if condition is true */
       fmt.Printf("Value of a is 20\n" )
   } else if( a == 30 ) {
       /* if else if condition is true  */
       fmt.Printf("Value of a is 30\n" )
   } else {
       /* if none of the conditions is true */
       fmt.Printf("None of the values is matching\n" )
   }
   fmt.Printf("Exact value of a is: %d\n", a )
}


讓我們編譯和運(yùn)行上面的程序,這將產(chǎn)生以下結(jié)果:

None of the values is matching
Exact value of a is: 100

您可能感興趣的文章:
  • golang switch語句的靈活寫法介紹
  • Go語言每天必學(xué)之switch語句
  • Golang中switch語句和select語句的用法教程
  • 深入剖析Go語言編程中switch語句的使用
  • Go語言中的switch用法實例分析
  • Go中的條件語句Switch示例詳解

標(biāo)簽:眉山 宜昌 紹興 邢臺 七臺河 盤錦 上海 雅安

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Go語言中的if條件語句使用詳解》,本文關(guān)鍵詞  語言,中的,條件,語句,使用,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Go語言中的if條件語句使用詳解》相關(guān)的同類信息!
  • 本頁收集關(guān)于Go語言中的if條件語句使用詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    海宁市| 石家庄市| 双牌县| 庆阳市| 渭南市| 华安县| 安乡县| 柞水县| 阿图什市| 岳普湖县| 卓资县| 临高县| 金湖县| 江山市| 若尔盖县| 台中县| 含山县| 安远县| 宁武县| 广州市| 卓尼县| 陇川县| 济宁市| 静宁县| 诸暨市| 辽中县| 正蓝旗| 清水县| 平度市| 霍邱县| 潜山县| 和平县| 襄城县| 开封市| 临汾市| 天柱县| 嵊泗县| 马关县| 饶河县| 灌云县| 南陵县|