加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

关于golang中map的key的类型

发布时间:2020-12-16 18:30:14 所属栏目:大数据 来源:网络整理
导读:golang中的map,的 key 可以是很多种类型,比如 bool,数字,string,指针,channel,还有 只包含前面几个类型的 interface types,structs,arrays 显然,slice, map 还有 function 是不可以了,因为这几个没法用 == 来判断 原文如下: As mentioned earlier,map

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. Thelanguage specdefines this precisely,but in short,comparable types are boolean,numeric,string,pointer,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)

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读