go学习-基本知识点

string 转 []byte

func TestDemo(t *testing.T) {
	a := "aaa"
	b := "bbbbbbb"
	// ssh 是 a 的内存地址
	// 通过将字符串的底层地址强制转换成 StringHead 结构来获取字符串的底层指针和长度
	// type StringHeader struct {
	//    Data uintptr // 指向字符串实际内容的指针
	//    Len  int     // 字符串的长度
	// }
	ssha := *(*reflect.StringHeader)(unsafe.Pointer(&a))
	sshb := *(*reflect.StringHeader)(unsafe.Pointer(&b))
	// 使用 unsafe.Pointer 将 ssh 转换为 []byte 类型的指针
	// 然后再通过 * 运算符将其解引用,得到了一个字节切片
	// type SliceHeader struct {
	//    Data uintptr // 指向切片元素(字节数组)实际内容的指针
	//    Len  int     // 切片的长度
	//    Cap  int     // 切片的容量
	// }
	b1 := *(*[]byte)(unsafe.Pointer(&ssha))
	b2 := *(*[]byte)(unsafe.Pointer(&sshb))
	fmt.Printf("%v", b1)
	fmt.Printf("%v", b2)
}

你可能感兴趣的:(go,golang,学习)