## 主要内容 ##
- 在go代码中经常见到bytes.Buffer类型数据
- bytes.Buffer这个数据跟 []byte之间有什么关系呢
- bytes.Buffer相关的数据类型之间转换
----------
bytes.Buffer bytes是这个包的名字,bytes.Buffer则是一种缓存数据类型.
type Buffer struct {
buf []byte
off int // read at &buf[off], write at &buf[len(buf)]
runeBytes [utf8.UTFMax]byte // avoid allocation of slice on each WriteByte or Rune
bootstrap [64]byte // memory to hold first slice; helps small buffers (Printf) avoid allocation.
lastRead readOp // last read operation, so that Unread* can work correctly.
}
这是Buffer结构的定义,里面实际上封装了一个 buf []byte数组。
----------
与Buffer相关的数据结构有很多,看Buffer的生成就大概知道可以与什么类型数据转换
func NewBuffer(buf byte[]) *Buffer
func NewBufferString(s string) *Buffer
func (b *Buffer) Bytes() []byte
func (b *Buffer) String() string
有疑问加站长微信联系(非本文作者)