golang面试-day51

下面的代码能否正确输出?
func main() {
    var fn1 = func() {}
    var fn2 = func() {}
    if fn1 != fn2 {
       println("fn1 not equal fn2")
    }
}

参考答案及解析:编译错误

    invalid operation: fn1 != fn2 (func can only be compared to nil)

函数只能与 nil 比较。

2.下面代码输出什么?
type T struct {
    n int
}
func main() {
    m := make(map[int]T)
    m[0].n = 1
    fmt.Println(m[0].n)
}
  • A. 1

  • B. compilation error

参考答案及解析:B。编译错误:

    cannot assign to struct field m[0].n in map

map[key]struct 中 struct 是不可寻址的,所以无法直接赋值。

修复代码:

type T struct {
    n int
}
func main() {
    m := make(map[int]T)
    t := T{1}
    m[0] = t
    fmt.Println(m[0].n)
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值