感兴趣的读者可以点击在线验证 package main import ( "fmt" ) func main() { var ( a int b int64 ) a = 1 b = 1 fmt.Println(equal(a, b)) // false } func equ