最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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

 更新時(shí)間:2015年10月29日 16:05:28   投稿:goldensun  
這篇文章主要介紹了Go語言中的if條件語句的使用,包括if...else語句以及相關(guān)嵌套,需要的朋友可以參考下

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

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

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

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

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

流程圖:

20151029155623767.jpg (254×321)

例子:

復(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語句可以跟著一個(gè)可選的else語句,布爾表達(dá)式是假時(shí)它被執(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í)行。

流程圖:

20151029160444006.jpg (251×321)

例子:

復(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í)行時(shí),它產(chǎn)生了以下結(jié)果:

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

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

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

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

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

一旦一個(gè)else if測(cè)試成功,其它任何剩余else if將不會(huì)被測(cè)試。

語法
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

相關(guān)文章

  • GO將mysql?中?decimal?數(shù)據(jù)類型映射到?protobuf的操作方法

    GO將mysql?中?decimal?數(shù)據(jù)類型映射到?protobuf的操作方法

    這篇文章主要介紹了go如何優(yōu)雅地將?mysql?中?decimal?數(shù)據(jù)類型映射到?protobuf,本文主要展示一下在 protobuf中 float與double的一個(gè)區(qū)別,結(jié)合實(shí)例代碼給大家介紹的非常詳細(xì),需要的朋友可以參考下
    2022-09-09
  • golang如何通過type定義函數(shù)類型

    golang如何通過type定義函數(shù)類型

    這篇文章主要介紹了golang如何通過type定義函數(shù)類型問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2024-01-01
  • Golang使用Gin實(shí)現(xiàn)文件上傳的示例代碼

    Golang使用Gin實(shí)現(xiàn)文件上傳的示例代碼

    本文我們主要介紹了Golang如何使用Gin實(shí)現(xiàn)文件上傳,Go標(biāo)準(zhǔn)庫net/http對(duì)文件上傳已經(jīng)提供了非常完善的支持,而Gin框架在其基礎(chǔ)上進(jìn)一步封裝,因此使用Gin開發(fā)文件上傳功能時(shí),只需要簡單幾行代碼便可以實(shí)現(xiàn),需要的朋友可以參考下
    2024-02-02
  • go語言LeetCode題解1030距離順序排列矩陣單元格

    go語言LeetCode題解1030距離順序排列矩陣單元格

    這篇文章主要為大家介紹了go語言LeetCode題解1030距離順序排列矩陣單元格,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-12-12
  • Golang之sync.Pool對(duì)象池對(duì)象重用機(jī)制總結(jié)

    Golang之sync.Pool對(duì)象池對(duì)象重用機(jī)制總結(jié)

    這篇文章主要對(duì)Golang的sync.Pool對(duì)象池對(duì)象重用機(jī)制做了一個(gè)總結(jié),文中有相關(guān)的代碼示例和圖解,具有一定的參考價(jià)值,需要的朋友可以參考下
    2023-07-07
  • go-zero服務(wù)部署配置及源碼解讀

    go-zero服務(wù)部署配置及源碼解讀

    這篇文章主要為大家介紹了go-zero服務(wù)部署配置及源碼解讀,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2023-08-08
  • golang常用庫之pkg/errors包第三方錯(cuò)誤處理包案例詳解

    golang常用庫之pkg/errors包第三方錯(cuò)誤處理包案例詳解

    這篇文章主要介紹了golang常用庫之pkg/errors包第三方錯(cuò)誤處理包,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2022-03-03
  • go?defer避坑指南之拆解延遲語句

    go?defer避坑指南之拆解延遲語句

    這篇文章主要為大家詳細(xì)介紹了go?defer避坑指南之如何拆解延遲語句,掌握正確使用方法,文中的示例代碼講解詳細(xì),感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)一下
    2023-11-11
  • go?mod?tidy命令的使用

    go?mod?tidy命令的使用

    gomodtidy命令是Go語言中用于管理項(xiàng)目依賴的工具,主要功能包括移除未使用的依賴項(xiàng)、添加缺失的依賴項(xiàng)以及更新go.sum文件以確保依賴項(xiàng)的正確校驗(yàn),感興趣的可以了解一下
    2024-11-11
  • Go語言排序算法:快速、可靠的排序解決方案

    Go語言排序算法:快速、可靠的排序解決方案

    Go語言提供了多種快速、可靠的排序算法,可以滿足不同場(chǎng)景下的排序需求,其中最常用的排序算法包括快速排序、歸并排序和堆排序,需要的朋友可以參考下
    2023-10-10

最新評(píng)論

浪卡子县| 高淳县| 茌平县| 塔河县| 东阿县| 郑州市| 汝阳县| 淮南市| 秦皇岛市| 桃园市| 正镶白旗| 青浦区| 崇礼县| 察隅县| 德庆县| 肃宁县| 习水县| 明溪县| 满洲里市| 江城| 玉林市| 哈尔滨市| 岢岚县| 汉川市| 西平县| 巴楚县| 龙海市| 澜沧| 南靖县| 和硕县| 界首市| 临高县| 两当县| 开鲁县| 湖北省| 习水县| 天祝| 扎赉特旗| 内乡县| 隆回县| 遵义县|