当前位置:网站首页>2022-07-04:以下go语言代码输出什么?A:true;B:false;C:编译错误。 package main import “fmt“ func main() { fmt.Pri

2022-07-04:以下go语言代码输出什么?A:true;B:false;C:编译错误。 package main import “fmt“ func main() { fmt.Pri

2022-07-04 21:54:00 福大大架构师每日一题

2022-07-04:以下go语言代码输出什么?A:true;B:false;C:编译错误。

package main

import "fmt"

func main() {
    
    fmt.Println(func() {
    } == func() {
    })
}

答案2022-07-04:

答案选C。Slice, map, and function values are not comparable. However, as a special case, a slice, map, or function value may be compared to the predeclared identifier nil.

在这里插入图片描述

原网站

版权声明
本文为[福大大架构师每日一题]所创,转载请带上原文链接,感谢
https://blog.csdn.net/weixin_48502062/article/details/125602097