博客地址:
* [go-reflect-deepequal](https://github.com/Chasiny/Blog/blob/master/blog/go/package/go-reflect-deepequal.md)
# DeepEqual
## 规则
### 1.不同类型的值不会深度相等
Values of distinct types are never deeply equal.
```go
type S1 struct {
Field int
}
type S2 struct {
Field int
}
func main() {
fmt.Println(reflect.DeepEqual(S1{1}, S2{1}))
}
```
>对应输出false
### 2.当两个数组的元素对应深度相等时,两个数组深度相等
Array values are deeply equal when their corresponding elements are deeply equal.
```go
func main() {
Array1 := []string{"hello1", "hello2"}
Array2 := []string{"hello1", "hello2"}
fmt.Println(reflect.DeepEqual(Array1, Array2))
}
```
>对应输出true
### 3.当两个相同结构体的所有字段对应深度相等的时候,两个结构体深度相等
Struct values are deeply equal if their corresponding fields,both exported and unexported, are deeply equal.
```go
type S struct {
Field1 int
field2 string
}
func main() {
s1 := S{Field1: 1, field2: "hello"}
s2 := S{Field1: 1, field2: "hello"}
fmt.Println(reflect.DeepEqual(s1, s2))
}
```
>对应输出true
### 4.当两个函数都为nil时,两个函数深度相等,其他情况不相等(相同函数也不相等)
Func values are deeply equal if both are nil; otherwise they are not deeply equal.
```go
func main() {
f1 := func(a int) int {
return a * 2
}
fmt.Println(reflect.DeepEqual(f1, f1))
f1 = nil
fmt.Println(reflect.DeepEqual(f1, f1))
}
```
>对应输出false跟true
### 5.当两个interface的真实值深度相等时,两个interface深度相等
Interface values are deeply equal if they hold deeply equal concrete values.
```go
func main() {
var i1 interface{}
i1 = "hello"
var i2 interface{}
i2 = "hello"
fmt.Println(reflect.DeepEqual(i1, i2))
}
```
>对应输出true
### 6.go中map的比较需要同时满足以下几个
* 1.两个map都为nil或者都不为nil,并且长度要相等
they are both nil or both non-nil, they have the same length
* 2.相同的map对象或者所有key要对应相同
either they are the same map object or their corresponding keys
* 3.map对应的value也要深度相等
map to deeply equal values
```go
func main() {
m1 := map[string]int{
"a": 1,
"b": 2,
}
m2 := map[string]int{
"a": 1,
"b": 2,
}
fmt.Println(reflect.DeepEqual(m1, m2))
}
```
>对应输出true
### 7.指针,满足以下其一即是深度相等
* 1.两个指针满足go的==操作符
Pointer values are deeply equal if they are equal using Go's == operator
* 2.两个指针指向的值是深度相等的
```go
func main() {
m1 := map[string]int{
"a": 1,
"b": 2,
}
m2 := map[string]int{
"a": 1,
"b": 2,
}
M1:=&m1
M2:=&m2
fmt.Println(reflect.DeepEqual(M1, M2))
}
```
>对应输出true
### 8.切片,需要同时满足以下几点才是深度相等
* 1.两个切片都为nil或者都不为nil,并且长度要相等
they are both nil or both non-nil, they have the same length
* 2.两个切片底层数据指向的第一个位置要相同或者底层的元素要深度相等
either they point to the same initial entry of the same underlying array (that is, &x[0] == &y[0]) or their corresponding elements (up to length) are deeply equal.
```go
func main() {
s1 :=[] int {1,2,3,4,5}
s2 :=s1[0:3]
s3 :=s1[0:3]
fmt.Println(reflect.DeepEqual(s2, s3))
s4 :=s1[1:4]
fmt.Println(reflect.DeepEqual(s2, s4))
}
```
>对应输出true,false
#### 注:空的切片跟nil切片是不深度相等的,例如
```go
func main() {
s1 :=[]byte{}
s2 :=[]byte(nil)
fmt.Println(reflect.DeepEqual(s1, s2))
}
```
>对应输出false
### 其他
* 其他类型的值(numbers, bools, strings, channels)如果满足go的==操作符,则是深度相等的
* 要注意不是所有的值都深度相等于自己,例如函数,以及嵌套包含这些值的结构体,数组等
---
* go如何避免递归循环判断结构体嵌套自身:通过使用一个visit(类型为map[visit]bool)标记访问
在reflect/deepequal.go中的deepValueEqual函数中有这么一段代码
```go
if v1.CanAddr() && v2.CanAddr() && hard(v1.Kind()) {
addr1 := unsafe.Pointer(v1.UnsafeAddr())
addr2 := unsafe.Pointer(v2.UnsafeAddr())
//对指针进行比较排序,减少重复比较
if uintptr(addr1) > uintptr(addr2) {
// Canonicalize order to reduce number of entries in visited.
// Assumes non-moving garbage collector.
addr1, addr2 = addr2, addr1
}
// Short circuit if references are already seen.
typ := v1.Type()
v := visit{addr1, addr2, typ}
//为已访问的话返回true
if visited[v] {
return true
}
//标记两个比较的变量为已访问
// Remember for later.
visited[v] = true
}
```
有疑问加站长微信联系(非本文作者))