如何在go語言中使用scan方法?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
銅鼓網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)公司!從網(wǎng)頁設計、網(wǎng)站建設、微信開發(fā)、APP開發(fā)、自適應網(wǎng)站建設等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)公司從2013年創(chuàng)立到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設就選創(chuàng)新互聯(lián)公司。
操作環(huán)境:windows10系統(tǒng)、GO 1.11.2、thinkpad t480電腦。
Scan系列
Go語言fmt
包下有fmt.Scan
、fmt.Scanf
、fmt.Scanln
三個函數(shù),可以在程序運行過程中從標準輸入獲取用戶的輸入。
func Scan(a ...interface{}) (n int, err error)
Scan從標準輸入掃描文本,讀取由空白符分隔的值保存到傳遞給本函數(shù)的參數(shù)中,換行符視為空白符。
本函數(shù)返回成功掃描的數(shù)據(jù)個數(shù)和遇到的任何錯誤。如果讀取的數(shù)據(jù)個數(shù)比提供的參數(shù)少,會返回一個錯誤報告原因。
func main() { var ( name string age int married bool ) fmt.Scan(&name, &age, &married) fmt.Printf("掃描結(jié)果 name:%s age:%d married:%t \n", name, age, married) }
將上面的代碼編譯后在終端執(zhí)行,在終端依次輸入小明
、18
和false
使用空格分隔。
$ ./scan_demo 小明 18 false掃描結(jié)果 name:小明 age:18 married:false
fmt.Scan
從標準輸入中掃描用戶輸入的數(shù)據(jù),將以空白符分隔的數(shù)據(jù)分別存入指定的參數(shù)。
func Scanf(format string, a ...interface{}) (n int, err error)
Scanf從標準輸入掃描文本,根據(jù)format參數(shù)指定的格式去讀取由空白符分隔的值保存到傳遞給本函數(shù)的參數(shù)中。
本函數(shù)返回成功掃描的數(shù)據(jù)個數(shù)和遇到的任何錯誤。
func main() { var ( name string age int married bool ) fmt.Scanf("1:%s 2:%d 3:%t", &name, &age, &married) fmt.Printf("掃描結(jié)果 name:%s age:%d married:%t \n", name, age, married) }
將上面的代碼編譯后在終端執(zhí)行,在終端按照指定的格式依次輸入小明、18
和false。
$ ./scan_demo 1:小明 2:18 3:false掃描結(jié)果 name:小明 age:18 married:false
fmt.Scanf
不同于fmt.Scan
簡單的以空格作為輸入數(shù)據(jù)的分隔符,fmt.Scanf
為輸入數(shù)據(jù)指定了具體的輸入內(nèi)容格式,只有按照格式輸入數(shù)據(jù)才會被掃描并存入對應變量。
例如,我們還是按照上個示例中以空格分隔的方式輸入,fmt.Scanf
就不能正確掃描到輸入的數(shù)據(jù)。
$ ./scan_demo 小明 18 false掃描結(jié)果 name: age:0 married:false
func Scanln(a ...interface{}) (n int, err error)
Scanln類似Scan,它在遇到換行時才停止掃描。最后一個數(shù)據(jù)后面必須有換行或者到達結(jié)束位置。
本函數(shù)返回成功掃描的數(shù)據(jù)個數(shù)和遇到的任何錯誤。
func main() { var ( name string age int married bool ) fmt.Scanln(&name, &age, &married) fmt.Printf("掃描結(jié)果 name:%s age:%d married:%t \n", name, age, married) }
將上面的代碼編譯后在終端執(zhí)行,在終端依次輸入小明
、18
和false
使用空格分隔。
$ ./scan_demo 小明 18 false 掃描結(jié)果 name:小明 age:18 married:false
fmt.Scanln
遇到回車就結(jié)束掃描了,這個比較常用。
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)的支持。