首頁 > 後端開發 > Golang > 為什麼我的 Go 編譯器在明確使用變數時將其標記為未使用?

為什麼我的 Go 編譯器在明確使用變數時將其標記為未使用?

Patricia Arquette
發布: 2024-12-17 11:34:24
原創
635 人瀏覽過

Why Does My Go Compiler Flag Variables as Unused When They Are Clearly Used?

編譯器在使用變數時將其標記為未使用

在Go 中,即使在所討論的變量顯然正在被利用。這可能會令人困惑,但解決方案通常在於理解變數作用域。

在以下函數中遇到這樣的錯誤:

type Comparison struct {
        Left []byte
        Right []byte
        Name string
}

func img(w http.ResponseWriter, r *http.Request, c appengine.Context, u *user.User) {
  key := datastore.NewKey("Comparison", r.FormValue("id"), 0, nil)
  side := r.FormValue("side")
  comparison := new(Comparison)
  err := datastore.Get(c, key, comparison)
  check(err)

  if( side == "left"){
    m, _, err := image.Decode(bytes.NewBuffer(comparison.Left))
  } else {
    m, _, err := image.Decode(bytes.NewBuffer(comparison.Right))
  }
  check(err)

  w.Header().Set("Content-type", "image/jpeg")
  jpeg.Encode(w, m, nil)
}
登入後複製

編譯器將 m 和 err 標記為未使用,儘管他們明顯的用法。解決此問題的關鍵是認識到變數 m 的作用域位於 if 語句內。要在此範圍之外使用 m,必須在函數層級聲明它。

以下修訂後的程式碼解決了此問題:

type Comparison struct {
        Left []byte
        Right []byte
        Name string
}

func img(w http.ResponseWriter, r *http.Request, c appengine.Context, u *user.User) {
  key := datastore.NewKey("Comparison", r.FormValue("id"), 0, nil)
  side := r.FormValue("side")
  comparison := new(Comparison)
  err := datastore.Get(c, key, comparison)
  check(err)

  // Note: m is now declared at the function level
  var m Image    
  if( side == "left"){
    m, _, err = image.Decode(bytes.NewBuffer(comparison.Left))
  } else {
    m, _, err = image.Decode(bytes.NewBuffer(comparison.Right))
  }
  check(err)

  w.Header().Set("Content-type", "image/jpeg")
  jpeg.Encode(w, m, nil)
}
登入後複製

以上是為什麼我的 Go 編譯器在明確使用變數時將其標記為未使用?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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