package main
import (
"fmt"
)
func Read(buff []byte) (n int, err error) {
temp := []byte("haha")
buff = temp
return 4, nil
}
func main() {
buff := make([]byte, 5)
n, _ := Read(buff)
fmt.Println(string(buff[:n]), n)
}
为什么调用Read后buff不能返回值呢,求解。
有疑问加站长微信联系(非本文作者)