packagemainimport("fmt""reflect""unsafe")funcBytesToString(b[]byte)string{bh:=(*reflect.SliceHeader)(unsafe.Pointer(&b))sh:=reflect.StringHeader{bh.Data,bh.Len}return*(*string)(unsafe.Pointer(&sh))}funcStringToBytes(sstring)[]byte{sh:=(*reflect.StringHeader)(unsafe.Pointer(&s))bh:=reflect.SliceHeader{sh.Data,sh.Len,0}return*(*[]byte)(unsafe.Pointer(&bh))}funcmain(){b:=[]byte{'b','y','t','e'}s:=BytesToString(b)fmt.Println(s)b=StringToBytes(s)fmt.Println(string(b))}// ByteSliceToString is used when you really want to convert a slice // of bytes to a string without incurring overhead. It is only safe// to use if you really know the byte slice is not going to change // in the lifetime of the stringfuncByteSliceToString(bs[]byte)string{// This is copied from runtime. It relies on the string// header being a prefix of the slice header!return*(*string)(unsafe.Pointer(&bs))}
unsafe 方式性能超赞,但顾名思义 unsafe ,至少目前用了10年没问题,如果 go 有重大变化。