golang with compile error:undefined:bytes in bytes.Buffer

时间:2017-02-22 12:46:01

标签: go

我在下面定义了一个struct,但总是得到构建错误:“undefined:bytes in bytes.Buffer”

type test struct {
    id       int64
    Content    []byte
    Buffer     *bytes.Buffer
}

1 个答案:

答案 0 :(得分:8)

你忘了导入声明。

import "bytes"