意外无效的内存地址或空指针解引用



我得到一个无效内存地址的运行时错误。

panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x10 pc=0x4e0f24]
goroutine 1192592 [running]:
panic(0x793540, 0xc420010040)
#011/usr/local/go/src/runtime/panic.go:500 +0x1a1
foobar/sd.(*Channel).Attributes(0x0, 0xc420110101, 0xc42278f9b0, 0x9)
#011/home/app/go/src/foobar/sd/channel.go:36 +0x54

频道。Go是这样的:

35 func (m *Channel) Attributes() (*ChannelAttrs, error) {
36    redisHash := "sd:channels:" + m.hash
37
38    rc := m.ctx.RedisPool.Get()
39    values, err := redis.Values(rc.Do("HGETALL", redisHash))
40    rc.Close()
41    if err != nil {
42        return nil, err
43    }
44    attrs := ChannelAttrs{}
45    redis.ScanStruct(values, &attrs)
46    return &attrs, nil
47 }

怎么可能是第36行导致的呢?m有可能为零吗?如果有,怎么做?

注意:哈希定义为字符串

这意味着Attributes正在被调用,接收器m作为nil

原则上可以使用nil接收器调用方法(如果它们检查nil,这甚至可能很有用)-见这里-但是这个特殊的方法Attributes()不是设计为使用nil接收器调用的,因为m在没有nil检查的情况下被解引用。这(用nil接收器m调用的方法)是在调用代码中发生的事情。

在这里看到一个简化的示例,并注意注释掉+ m.hash使整个事情正常工作,就像这里一样。

下面的代码:

package main
import (
    "fmt"
)
type Channel struct {
    hash string
}
func (m *Channel) Attributes() {
    r := "x" + m.hash
    fmt.Println(r)
}
func main() {
    var c *Channel
    c.Attributes()
}

其输出为:

panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0xffffffff addr=0x0 pc=0x20131]
goroutine 1 [running]:
panic(0x102360, 0x1040a038)
    /usr/local/go/src/runtime/panic.go:500 +0x720
main.(*Channel).Attributes(0x0, 0x104000f0)
/tmp/sandbox285779060/main.go:12 +0x131
main.main()
    /tmp/sandbox285779060/main.go:18 +0x20