Golang笔试易错知识点

1、函数只能与nil比较,不能比较两个函数是否相等// 编译错误func main() { var f1 = func() {} var f2 = func() {} if f1 == f2 { fmt.