看下面的代码片段。
package main
import "fmt"
type Empty struct {
Field1, Field2 string
}
func main() {
value := Empty{}
fmt.Println(value == nil)
fmt.Printf("%p", &value)
}
我有编译器错误
./empty_struct.go:19: cannot convert nil to type Empty
如何检查值结构类型是否为空?
白猪掌柜的
MMMHUHU
相关分类