go语言自定义类型的方法(以下go语言代码输出什么)

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.这意思是没有元素的时候,啥都不做。

go语言自定义类型的方法(以下go语言代码输出什么)(1)

,

免责声明:本文仅代表文章作者的个人观点,与本站无关。其原创性、真实性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容文字的真实性、完整性和原创性本站不作任何保证或承诺,请读者仅作参考,并自行核实相关内容。文章投诉邮箱:anhduc.ph@yahoo.com

    分享
    投诉
    首页