doue1925 2018-07-19 18:41
浏览 497
已采纳

Golang错误“无效的内存地址或nil指针取消引用”,为什么会发生这种情况? [重复]

This question already has an answer here:

package main

import (
        "fmt"
        "net/http"
)

func main() {
        http.HandleFunc("/", handler)
        http.HandleFunc("/cookie", cookie)
        http.ListenAndServe(":8080", nil)
}

func handler(w http.ResponseWriter, r *http.Request) {
            // do ...
}

func cookie(w http.ResponseWriter, r *http.Request) {
        cd, _ := r.Cookie("hello")

        if cd.Value == "username" {
               // do ...
        }
}

if run:

$ go run main.go

no problem server is work, but in firfox when inserting "/cookie" path the problem occurs.

Error:

runtime error: invalid memory address or nil pointer dereference

</div>
  • 写回答

1条回答 默认 最新

  • drmeu26880 2018-07-19 18:47
    关注

    This occurs, as the error message says, when you try to dereference (use) nil. Without knowing which line the error was reported on, I would have to guess it's here:

        cd, _ := r.Cookie("hello")
    
        if cd.Value == "username" {  // <-- This line
               // do ...
        }
    

    Because you're discarding the error from r.Cookie() instead of checking the error, so you don't know that the cookie hello doesn't exist, meaning cd is nil. So when you try to use cd.Value, you're dereferencing a nil pointer, causing the panic you're seeing.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示