关于golang中map的key的类型

本文探讨了Golang中map的key可以使用的各种类型,包括基本类型如bool、数字和字符串,以及指针、通道和仅包含这些类型的接口、结构体及数组。文章还解释了为何slice、map和function不能作为key的原因,并通过示例说明了结构体作为key时的相等性条件。

golang中的map,的 key 可以是很多种类型,比如 bool, 数字,string, 指针, channel , 还有 只包含前面几个类型的 interface types, structs, arrays 

显然,slice, map 还有 function 是不可以了,因为这几个没法用 == 来判断

原文如下:

As mentioned earlier, map keys may be of any type that is comparable. The language spec defines this precisely, but in short, comparable types are boolean, numeric, string, pointer, channel, and interface types, and structs or arrays that contain only those types. Notably absent from the list are slices, maps, and functions; these types cannot be compared using ==, and may not be used as map keys.


两个 struct完全相等, 意味着里面的所有变量的值都完全相等,原文中的例子如下:

type Key struct {
      Path, Country string
}

hits := make(map[Key]int)


评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值