首頁 > 後端開發 > Golang > 為什麼 Golang 中的 Scanf 在 Windows 上失敗?

為什麼 Golang 中的 Scanf 在 Windows 上失敗?

Mary-Kate Olsen
發布: 2024-11-03 16:11:03
原創
327 人瀏覽過

Why is Scanf Failing on Windows in Golang?

Windows 上的 GOLang Scanf 錯誤

在 GOLang 中,已知 Scanf 函數在 Windows 系統上連續使用時會遇到錯誤。雖然第一次使用 Scanf 成功檢索使用者輸入,但後續嘗試失敗,導致函數突然退出。

要修正此問題,建議使用 Bufio 包,它提供了更精細的方法。 Bufio 抽象化了 Scanf 的某些複雜性,例如它對空格作為分隔符號的依賴。以下是如何使用 Bufio 優雅地收集憑證的範例:

<code class="go">func credentials() (string, string) {
    reader := bufio.NewReader(os.Stdin)

    fmt.Print("Enter Username: ")
    username, _ := reader.ReadString('\n')

    fmt.Print("Enter Password: ")
    password, _ := reader.ReadString('\n')

    return strings.TrimSpace(username), strings.TrimSpace(password) // ReadString() leaves a trailing newline character
}</code>
登入後複製

透過使用 ReadString 檢索使用者輸入,Bufio 套件消除了 Windows 上的 Scanf 遇到的問題。它還會自動處理尾隨換行符,確保乾淨一致的資料擷取。

以上是為什麼 Golang 中的 Scanf 在 Windows 上失敗?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板