func的零值

时间:2015-04-09 15:51:59

标签: go functional-programming

给出一个结构:

type foo struct {
  bar func(int) int
}

当我var x foo

x.bar的初始值是什么?

1 个答案:

答案 0 :(得分:8)

来自the documentation

  

函数类型的未初始化变量的值为nil。