英文:
golang with compile error: undefined: bytes in bytes.Buffer
问题
我定义了一个如下的结构体,但是一直得到构建错误:"undefined: bytes in bytes.Buffer"
type test struct {
id int64
Content []byte
Buffer *bytes.Buffer
}
英文:
I defined a struct as below, but always get the build error: “undefined: bytes in bytes.Buffer”
type test struct {
id int64
Content []byte
Buffer *bytes.Buffer
}
答案1
得分: 18
你忘记了导入语句。
导入 "bytes"
英文:
You forgot about import statement.
import "bytes"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论