golang處理輸入的方法:1、【fmt.Scan】互動接受輸入,透過空格來分詞;2、【fmt.Scanln】要指定接收輸入的變數名稱和變數數;3、【 fmt .Scanf】需要指定輸入的格式,直接把不需要的部分過濾掉。
golang處理輸入的方法:
#1. fmt.Scan
fmt.Scan
互動接受輸入,透過空格來分詞。呼叫Scan函數時,要指定接收輸入的變數名稱和變數數。
直到接收完所有指定的變數數,Scan函數才會傳回,回車符號也無法提前讓它回傳。
fmt.Println("Please enter the firstName and secondName: ") fmt.Scan(&afirstName, &asecondName) fmt.Printf("firstName is %s, secondName is %s\n", afirstName, asecondName)
結果如下:
Please enter the firstName and secondName: zz rr firstName is zz, secondName is rr
2. fmt.Scanln
Scanln
呼叫時,也要指定接收輸入的變數名和變數數。
它同Scan的區別,在於 \ n
會讓函數提前返回,將返回時還未接收到值的變數賦為空。
fmt.Println("Please enter the firstName and secondName: ") fmt.Scanln(&bfirstName, &bsecondName) fmt.Printf("firstName is %s, secondName is %s\n", bfirstName, bsecondName)
結果如下:
Please enter the firstName and secondName: zr firstName is zr, secondName is
3. fmt.Scanf
用Scanf
處理輸入,是比較靈活的一種處理方式。
需要指定輸入的格式,適用於完全了解輸入格式的場景,可以直接把不需要的部分過濾掉。
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)
結果如下:
1)這個場景,在接收輸入時,就把不需要的部分「//」 和「\n」過濾掉了,接收到是有用的兩個字串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
#相關學習推薦:Go語言教學
以上是golang如何處理輸入?的詳細內容。更多資訊請關注PHP中文網其他相關文章!