2020年9月3日

Golang---基本类型(map)

摘要: 摘要:今天我们来学习 Golang 中的 另外一种常用的数据类型,通过数据结构和源码来分析 golang 中的 map 是如何实现的。 数据结构 bucketCntBits = 3 bucketCnt = 1 << bucketCntBits // Maximum average load of a 阅读全文

posted @ 2020-09-03 11:37 爱笑的张飞 阅读(346) 评论(0) 推荐(0) 编辑

Golang---基本类型(slice)

摘要: 摘要: 今天我们来学习 Golang 中的一个基本的数据结构 slice, 这个和 C++ 中的 vector 容器思想基本一致,是一个容量可变的数组,那我们就来看下它和 array 的区别和联系,并对其中的典型操作给出分析。 数据结构 // StringHeader is the runtime 阅读全文

posted @ 2020-09-03 11:21 爱笑的张飞 阅读(388) 评论(0) 推荐(0) 编辑

导航