字符串

Go 字符串 #

字符串是一个只读的切片类型 #

// 包含指向字节数组的指针和数组的大小
type StringHeader struct {
    Data uintptr
    Len  int
    // 比 slice 少了 Cap 字段
}

// 比字符串多了表示容量的 Cap 字段
type SliceHeader struct {
    Data uintptr
    Len  int
    Cap  int
}

本文访问量

本站总访问量

本站总访客数