在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
同一个struct的2个实例能不能比较 == != 两个不同的struct的实例能不能比较 == != 如果结构体的所有成员变量都是可比较的,那么结构体就可比较 type s2 struct { name string } aa := s2{ name: "aa", } bb := s2{ name: "aa", } fmt.Printf("%v\n", aa == bb) 这个返回true 如果是结构体指针 , 返回 false
当有不可比较字段的时候 , 编译期就会报错
换成结构体指针 , 就不会报错了
返回结果 false;true 代码: type s1 struct { one map[string]string two []string three string } a := &s1{ one: map[string]string{"aaa": "bbb"}, two: []string{"aaa", "bbb"}, three: "aaaa", } b := &s1{ one: map[string]string{"aaa": "bbb"}, two: []string{"aaa", "bbb"}, three: "aaaa", } c := a fmt.Printf("%v;%v", a == b, a == c)
|
请发表评论