Go 中数据结构的编解码
Go 中经常需要将数据结构编解码为字节数组进行传输或存储。本文探讨了高效、稳健地执行此任务的技术。
要执行类型转换,请谨慎使用不安全的包。更安全的选择是利用编码/二进制包,如下所示:
<code class="go">// T represents a simple data structure. type T struct { A int64 B float64 } // EncodeT converts the T struct to a byte array. func EncodeT(t T) ([]byte, error) { buf := &bytes.Buffer{} err := binary.Write(buf, binary.BigEndian, t) return buf.Bytes(), err } // DecodeT converts a byte array to a T struct. func DecodeT(b []byte) (T, error) { t := T{} buf := bytes.NewReader(b) err := binary.Read(buf, binary.BigEndian, &t) return t, err }</code>
用法示例:
<code class="go">t := T{A: 0xEEFFEEFF, B: 3.14} encoded, err := EncodeT(t) if err != nil { panic(err) } decoded, err := DecodeT(encoded) if err != nil { panic(err) } fmt.Printf("Encoded: %x", encoded) fmt.Printf("Decoded: %x %f", decoded.A, decoded.B)</code>
也可以使用自定义转换函数或编码/gob 包对于更复杂的用例。
以上是如何在Go中高效地编码和解码数据结构?的详细内容。更多信息请关注PHP中文网其他相关文章!