摘要: package main import ( "bytes" "bufio" "fmt" ) func main() { buf := &bytes.Buffer{} wr := bufio.NewWriter(buf) wr.Write([]byte("1234")) fmt.Println("bu 阅读全文
posted @ 2022-09-28 11:19 _zxq 阅读(167) 评论(0) 推荐(0) 编辑