写点什么

2022-10-31:以下 go 语言代码输出什么?A:map[];B:nil;C:Panic;D:编译错误。 package main import “fmt“ func main() {

  • 2022-10-31
    北京
  • 本文字数:208 字

    阅读完需:约 1 分钟

2022-10-31:以下go语言代码输出什么?A:map[];B:nil;C:Panic;D:编译错误。 package main import “fmt“ func main() {

2022-10-31:以下 go 语言代码输出什么?A:map[];B:nil;C:Panic;D:编译错误。


package main
import "fmt"
func main() { var m map[string]int delete(m, "oh noes!") fmt.Println(m)}
复制代码


答案选 A。在 delete 函数的文档有说明:The delete built-in function deletes the element with the specified key (m[key]) from the map. If m is nil or there is no such element, delete is a no-op.这意思是没有元素的时候,啥都不做。



发布于: 刚刚阅读数: 3
用户头像

还未添加个人签名 2021-02-15 加入

还未添加个人简介

评论

发布
暂无评论
2022-10-31:以下go语言代码输出什么?A:map[];B:nil;C:Panic;D:编译错误。 package main import “fmt“ func main() {_golang_福大大架构师每日一题_InfoQ写作社区