使用Go语言中的encoding/binary包进行字节序转换

huangapple go评论117阅读模式
英文:

byte endian convert by using encoding/binary in Go

问题

我收到了运行时错误消息Write T1 binary.Read: invalid type main.T1

  1. package main
  2. import (
  3. "encoding/binary"
  4. "net"
  5. )
  6. type T1 struct {
  7. f1 [5]byte
  8. f2 int
  9. }
  10. func main() {
  11. conn, _ := net.Dial("tcp", ":12345")
  12. l1 := T1{[5]byte{'a', 'b', 'c', 'd', 'e'}, 1234}
  13. binary.Write(conn, binary.BigEndian, &l1)
  14. }

我希望使用自动转换字节序的功能,我该如何做呢?
顺便问一下,有没有更高效的方法?

英文:

I got the runtime error message Write T1 binary.Read: invalid type main.T1

  1. package main
  2. import (
  3. "encoding/binary"
  4. "net"
  5. )
  6. type T1 struct {
  7. f1 [5]byte
  8. f2 int
  9. }
  10. func main() {
  11. conn, _ := net.Dial("tcp", ":12345")
  12. l1 := T1{[5]byte{'a', 'b', 'c', 'd', 'e'}, 1234}
  13. binary.Write(conn, binary.BigEndian, &l1)
  14. }

I wish to use the endian auto convert function, how could I do?
By the way, is there more efficient way?

答案1

得分: 9

使用导出的固定大小字段。例如,

  1. package main
  2. import (
  3. "bytes"
  4. "encoding/binary"
  5. "fmt"
  6. )
  7. type T struct {
  8. F1 [5]byte
  9. F2 int32
  10. }
  11. func main() {
  12. var t1, t2 T
  13. t1 = T{[5]byte{'a', 'b', 'c', 'd', 'e'}, 1234}
  14. fmt.Println("t1:", t1)
  15. buf := new(bytes.Buffer)
  16. err := binary.Write(buf, binary.BigEndian, &t1)
  17. if err != nil {
  18. fmt.Println(err)
  19. }
  20. err = binary.Read(buf, binary.BigEndian, &t2)
  21. if err != nil {
  22. fmt.Println(err)
  23. }
  24. fmt.Println("t2:", t2)
  25. }

输出:

  1. t1: {[97 98 99 100 101] 1234}
  2. t2: {[97 98 99 100 101] 1234}
英文:

Use exported fixed size fields. For example,

  1. package main
  2. import (
  3. "bytes"
  4. "encoding/binary"
  5. "fmt"
  6. )
  7. type T struct {
  8. F1 [5]byte
  9. F2 int32
  10. }
  11. func main() {
  12. var t1, t2 T
  13. t1 = T{[5]byte{'a', 'b', 'c', 'd', 'e'}, 1234}
  14. fmt.Println("t1:", t1)
  15. buf := new(bytes.Buffer)
  16. err := binary.Write(buf, binary.BigEndian, &t1)
  17. if err != nil {
  18. fmt.Println(err)
  19. }
  20. err = binary.Read(buf, binary.BigEndian, &t2)
  21. if err != nil {
  22. fmt.Println(err)
  23. }
  24. fmt.Println("t2:", t2)
  25. }

Output:

  1. t1: {[97 98 99 100 101] 1234}
  2. t2: {[97 98 99 100 101] 1234}

答案2

得分: 2

引用来自binary/encoding文档的_exactomundo_的话:

> 固定大小的值可以是固定大小的算术类型(int8,uint8,int16,float32,complex64,...)或仅包含固定大小值的数组或结构体。

因此:

  1. type T1 struct {
  2. f1 [5]uint8
  3. f2 int32
  4. }

在这里起作用。

英文:

Quoting exactomundo from binary/encoding docs:

> A fixed-size value is either a fixed-size arithmetic type (int8, uint8, int16, float32, complex64, ...) or an array or struct containing only fixed-size values.

And therefore:

  1. type T1 struct {
  2. f1 [5]uint8
  3. f2 int32
  4. }

works here.

huangapple
  • 本文由 发表于 2011年11月8日 00:36:13
  • 转载请务必保留本文链接:https://go.coder-hub.com/8039552.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定