切片和数组 type slice struct { array unsafe.Pointer len int cap int } 从切片的结构定义来看,是对底层数组的封装,增加了长度及
阅读更多...
KGo笔记