gpt4 book ai didi

go - 错误 “binary.Write: invalid type”是什么意思?

转载 作者:行者123 更新时间:2023-12-03 10:09:46 43 4
gpt4 key购买 nike

下面显示的代码,我创建了一个struct类型,并希望将其编码为二进制。
但是它显示binary.Write: invalid type main.Stu错误,我读过类似的代码,但是我找不到为什么我的代码不起作用?


type Stu struct {
Name string
Age int
Id int
}

func main() {
s := &Stu{
Name: "Leo",
Age: 21,
Id: 1,
}

buf := new(bytes.Buffer)
err := binary.Write(buf, binary.BigEndian, s)
if err != nil{
fmt.Println(err)
}
fmt.Printf("%q\n", buf)
}

最佳答案

简而言之: encoding/binary 不能用于编码大小不固定的任意值。 intstring就是这样的示例。引用 binary.Write() :

Write writes the binary representation of data into w. Data must be a fixed-size value or a slice of fixed-size values, or a pointer to such data.


请注意,如果您删除 string字段并将 int字段更改为 int32,它将起作用:
type Stu struct {
Age int32
Id int32
}

func main() {
s := &Stu{
Age: 21,
Id: 1,
}

buf := new(bytes.Buffer)
err := binary.Write(buf, binary.BigEndian, s)
if err != nil {
fmt.Println(err)
}
fmt.Printf("%q\n", buf)
}
哪个输出(在 Go Playground上尝试):
"\x00\x00\x00\x15\x00\x00\x00\x01"
正如文档所建议的,要编码复杂的结构,请使用 encoding/gob
使用 encoding/gob进行编码和解码的示例:
buf := new(bytes.Buffer)
enc := gob.NewEncoder(buf)
if err := enc.Encode(s); err != nil {
fmt.Println(err)
}
fmt.Printf("%v\n", buf.Bytes())

dec := gob.NewDecoder(buf)
var s2 *Stu
if err := dec.Decode(&s2); err != nil {
fmt.Println(err)
}
fmt.Printf("%+v\n", s2)
哪个输出(在 Go Playground上尝试):
[41 255 129 3 1 1 3 83 116 117 1 255 130 0 1 3 1 4 78 97 109 101 1 12 0 1 3 65 103 101 1 4 0 1 2 73 100 1 4 0 0 0 12 255 130 1 3 76 101 111 1 42 1 2 0]
&{Name:Leo Age:21 Id:1}

关于go - 错误 “binary.Write: invalid type”是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65842245/

43 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com