gpt4 book ai didi

go - 在 golang 中清除 bytes.Buffer 的正确方法是什么?

转载 作者:IT老高 更新时间:2023-10-28 13:03:50 28 4
gpt4 key购买 nike

我正在尝试清除一个bytes.Buffer,但是文档中没有这个功能

也许我应该更新缓冲区?正确的做法是什么?

buffer   = bytes.NewBufferString("")
buffer.Grow (30000)

最佳答案

Package bytes

func (*Buffer) Reset

func (b *Buffer) Reset()

Reset resets the buffer so it has no content. b.Reset() is the same as b.Truncate(0).

func (*Buffer) Truncate

func (b *Buffer) Truncate(n int)

Truncate discards all but the first n unread bytes from the buffer. It panics if n is negative or greater than the length of the buffer.

buffer.Reset()

关于go - 在 golang 中清除 bytes.Buffer 的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35110610/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com