Go 的 fmt.Scanf 中如何处理无效输入
对于那些在使用 fmt.Scanf() 时遇到无效输入问题的人来说,这是对于理解为什么当输入字符串而不是整数时程序会进入无限循环至关重要。
在 Go 中,fmt.Scanf() 会解析输入流以获取特定的格式说明符(例如,“%d” " 对于十进制整数)。无效输入(例如字符串)会导致错误,但输入仍保留在 Stdin 缓冲区中。因此,对 fmt.Scanf() 的后续调用将继续处理相同的无效输入,从而导致无限循环。
使用 fmt.Scanln 的解决方案
另一种方法是使用 fmt.Scanln(),其行为不同。它读取并使用整行输入,包括任何无效字符。这可以按如下方式实现:
<code class="go">fmt.Printf("Please enter an integer: ") // Read in an integer var i int _, err := fmt.Scanln(&i) if err != nil { fmt.Printf("Error: %s", err.Error()) // If int read fails, read as string and forget var discard string fmt.Scanln(&discard) return } fmt.Printf("Input contained %d", i)</code>
其他选项
如果 fmt.Scanln() 不是最佳的,其他选项包括:
以上是为什么 Go 中 fmt.Scanf() 会导致无限循环且输入无效?的详细内容。更多信息请关注PHP中文网其他相关文章!