GoLang:结构中的可变长度数组,用于二进制读取

我正在尝试重新实现它几年前在 Go

中用C 完成的程序该程序应该读取一个类似于“记录”的结构化二进制文件并对记录做一些事情(对记录本身所做的事情与此无关)问题)


这样的数据文件由许多记录组成,其中每条记录具有以下定义:


REC_LEN   U2 // length of record after header

REC_TYPE  U1 //a type

REC_SUB   U1 //a subtype

REC_LEN x U1 //"payload" 

我现在的问题是如何在 Go 的结构中指定可变长度字节 []?

我的计划是使用 binary.Read 来读取记录

这是我迄今为止在 Go 中尝试过的:


type Record struct {

    rec_len uint16

    rec_type uint8

    rec_sub uint8

    data [rec_len]byte

}

不幸的是,我似乎无法在同一结构中引用结构的字段,因为出现以下错误:


xxxx.go:15: undefined: rec_len

xxxx.go:15: invalid array bound rec_len

我很感激任何给我指明正确方向的想法


明月笑刀无情
浏览 302回答 1
1回答

守着星空守着你

您可以按如下方式读取记录:var rec Record// Slurp up the fixed sized header.var buf [4]byte_, err := io.ReadFull(r, buf[:])if err != nil {    // handle error}rec.rec_len = binary.BigEndian.Uint16(buf[0:2])rec.rec_type = buf[2]rec.rec_sub = buf[3]// Create the variable part and read it.rec.data = make([]byte, rec.rec_len)_, err = io.ReadFull(r, rec.data)if err != nil {    // handle error}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go