溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何在golang中處理輸入

發(fā)布時(shí)間:2020-07-20 14:35:59 來(lái)源:億速云 閱讀:304 作者:Leah 欄目:編程語(yǔ)言

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)如何在golang中處理輸入,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

golang處理輸入的方法:1、【fmt.Scan】交互式接受輸入,通過(guò)空格來(lái)分詞;2、【fmt.Scanln】要指定接收輸入的變量名和變量數(shù);3、【 fmt.Scanf】需要指定輸入的格式,直接把不需要的部分過(guò)濾掉。

golang處理輸入的方法:

1. fmt.Scan

fmt.Scan交互式接受輸入,通過(guò)空格來(lái)分詞。調(diào)用Scan函數(shù)時(shí),要指定接收輸入的變量名和變量數(shù)。

直到接收完所有指定的變量數(shù),Scan函數(shù)才會(huì)返回,回車符也無(wú)法提前讓它返回。

fmt.Println("Please enter the firstName and secondName: ")
fmt.Scan(&afirstName, &asecondName)
fmt.Printf("firstName is %s, secondName is %s\n", afirstName, asecondName)

結(jié)果如下:

Please enter the firstName and secondName:
zz
rr
firstName is zz, secondName is rr

2. fmt.Scanln

Scanln調(diào)用時(shí),也要指定接收輸入的變量名和變量數(shù)。

它同Scan的區(qū)別,在于 \ n 會(huì)讓函數(shù)提前返回,將返回時(shí)還未接收到值的變量賦為空。

fmt.Println("Please enter the firstName and secondName: ")
fmt.Scanln(&bfirstName, &bsecondName)
fmt.Printf("firstName is %s, secondName is %s\n", bfirstName, bsecondName)

結(jié)果如下:

Please enter the firstName and secondName:
zr
firstName is zr, secondName is

3. fmt.Scanf

Scanf處理輸入,是比較靈活的一種處理方式。

需要指定輸入的格式,適用于完全了解輸入格式的場(chǎng)景,可以直接把不需要的部分過(guò)濾掉。

fmt.Println("Please enter the firstName and secondName: ")
fmt.Scanf("//%s\n%s", &cfirstName, &csecondName)
fmt.Printf("firstName is %s, secondName is %s", cfirstName, csecondName)

結(jié)果如下:

1)這個(gè)場(chǎng)景,在接收輸入時(shí),就把不需要的部分“//” 和 “\n”過(guò)濾掉了,接收到是有用的兩個(gè)字符串zz和rr。

Please enter the firstName and secondName:
//zz
rr
firstName is zz, secondName is rr

2)如果輸入不符合指定的格式,從不符合處開始,其后的變量值都為空。

Please enter the firstName and secondName:
//zr ui
firstName is zr, secondName is


上述就是小編為大家分享的如何在golang中處理輸入了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI