Efficient conversion between [] byte of the string golang

golang of [] byte a string is a type of a variable is immutable type conversion will re-open when the memory, in the concurrent program even when there will be millions of memory, here are unsafe conversion method

package main

import (
    "fmt"
    "strings"
    "unsafe"
)

func str2bytes(s string) []byte {
    x := (*[2]uintptr)(unsafe.Pointer(&s))
    h := [3]uintptr{x[0], x[1], x[1]}
    return *(*[]byte)(unsafe.Pointer(&h))
}

func bytes2str(b []byte) string {
    return *(*string)(unsafe.Pointer(&b))
}

func main() {
    s := strings.Repeat("abc", 3)
    b := str2bytes(s)
    s2 := bytes2str(b)
    fmt.Println(b, s2)
}

Original Source: https: //www.cnblogs.com/shuiyuejiangnan/p/9707066.html

Published 71 original articles · won praise 27 · Views 140,000 +

Guess you like

Origin blog.csdn.net/github_34777264/article/details/104663733