Golang中的一些神坑 发表于 2018-03-16 | 全局变量与局部变量 1234var a intfunc() { a := 1} 1runtime error: invalid memory address or nil pointer dereference 改为正常的 a = 1