解決Windows 上Go 中的Scanf 問題
Go 中的Scanf 函數因潛在的複雜性而聞名,尤其是在Windows 系統上。當執行兩次使用 Scanf 的程式時,當第二個輸入請求未註冊時,就會出現問題,導致函數突然終止。
要解決此問題,建議使用 bufio 包,它提供了更用戶友好的方式來處理輸入和輸出操作。下面的程式碼示範了 bufio 的替代方案:
<code class="go">func credentials() (string, string) { reader := bufio.NewReader(os.Stdin) // Initialize a bufio Reader fmt.Print("Enter Username: ") username, _ := reader.ReadString('\n') // Read the username, discarding any errors fmt.Print("Enter Password: ") password, _ := reader.ReadString('\n') // Read the password return strings.TrimSpace(username), strings.TrimSpace(password) // Remove trailing newline characters }</code>
這裡的主要差異是 bufio.NewReader() 的使用,它可以實現更結構化的輸入處理。 ReadString() 函數讀取使用者輸入,直到指定的分隔符號(在本例中為「n」),從而在不同作業系統之間實現更一致的輸入檢索。
透過利用這種基於 bufio 的方法,您可以繞過 Scanf 的潛在陷阱並確保可靠的輸入處理,無論您的程式是在 Windows 還是 Mac 上執行。
以上是為什麼 Scanf 在 Windows 上失敗以及如何使用 bufio 修復它?的詳細內容。更多資訊請關注PHP中文網其他相關文章!