您好,登錄后才能下訂單哦!
這篇文章主要介紹“Go語言中nil判斷出問題如何解決”,在日常操作中,相信很多人在Go語言中nil判斷出問題如何解決問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Go語言中nil判斷出問題如何解決”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
在 Go 語言中,布爾類型的零值(初始值)為 false,數值類型的零值為 0,字符串類型的零值為空字符串"",而指針、切片、映射、通道、函數和接口的零值則是 nil。
nil 內置的一個變量,用來代表空值,且只有指針、channel、方法、接口、map 和切片可以被賦值為 nil。
有過其他編程語言開發經驗的開發者也許會把 nil 看作其他語言中的 null(NULL),其實這并不是完全正確的,因為Go語言中的 nil 和其他語言中的 null 有很多不同點。
buildin/buildin.go:
// nil is a predeclared identifier representing the zero value for a
// pointer, channel, func, interface, map, or slice type.
var nil Type // Type must be a pointer, channel, func, interface, map, or slice type// Type is here for the purposes of documentation only. It is a stand-in
// for any Go type, but represents the same type for any given function
// invocation.
type Type int
下面的代碼是我對 http.Post 方法的封裝
func (r *Request) Post(endpoint string, params *url.Values, body io.Reader, headers map[string]string, cookies map[string]string) (resp *http.Response, err error) { url := fmt.Sprintf("%s%s", r.BaseURL, endpoint) var req *http.Request req, err = http.NewRequest(http.MethodPost, url, body) if err != nil { return } r.setRequest(req, params, headers, cookies) resp, err = r.Client.Do(req) return }
然后像下面這樣使用的時候:
var body *bytes.Reader body = nil resp, err = req.Post(endpoint, nil, body, nil, nil)
這時會出現空指針的錯誤,最終經過漫長的排查發現是在 http.NewRequest 里出現的空指針錯誤:
指針和接口的底層實現有兩部分:data 和 type。當指針和接口被顯式地賦值為 nil 時,data 和 type 同時為 nil,但是將一個 type 不為 nil 但 data 為 nil 的值賦值給指針或接口時,再與 nil 作比較的結果則是 false。
使用 reflect.ValueOf(body).IsNil() 判斷 body 是否為空:
func (r *Request) Post(endpoint string, params *url.Values, body io.Reader, headers map[string]string, cookies map[string]string) (resp *http.Response, err error) { url := fmt.Sprintf("%s%s", r.BaseURL, endpoint) var req *http.Request if reflect.ValueOf(body).IsNil() { req, err = http.NewRequest(http.MethodPost, url, nil) } else { req, err = http.NewRequest(http.MethodPost, url, body) } if err != nil { return } r.setRequest(req, params, headers, cookies) resp, err = r.Client.Do(req) return }
到此,關于“Go語言中nil判斷出問題如何解決”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。