Go 字符串 # 字符串是一个只读的切片类型 # // 包含指向字节数组的指针和数组的大小 type StringHeader struct { Data uintptr Len int // 比 slice 少了 Cap 字段 } // 比字符串多了表示容量的 Cap 字段 type SliceHeader struct { Data uintptr Len int Cap int }
叶王 © 2013-2024 版权所有。如果本文档对你有所帮助,可以请作者喝饮料。