好久以前忘记在哪看到的了,最近要用到想了好久才想起来怎么写,记录以下,免得后面要用又要想很久

func bytes2Str(slice []byte) string {
	return *(*string)(unsafe.Pointer(&slice))
}

func str2Bytes(s string) []byte {
	sh := (*reflect.StringHeader)(unsafe.Pointer(&s))
	bh := reflect.SliceHeader{
		Data: sh.Data,
		Len:  sh.Len,
		Cap:  sh.Len,
	}
	return *(*[]byte)(unsafe.Pointer(&bh))
}

具体原理是因为slice和string的header几乎一样:

type StringHeader struct {
    Data uintptr
    Len  int
}

type SliceHeader struct {
    Data uintptr
    Len  int
    Cap  int
}