V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
The Go Programming Language
http://golang.org/
Go Playground
Go Projects
Revel Web Framework
zzzkkk
V2EX  ›  Go 编程语言

bufio.Buffered 返回 0 一个未解决 bug

  •  
  •   zzzkkk · 231 天前 · 980 次点击
    这是一个创建于 231 天前的主题,其中的信息可能已经有所发展或是发生改变。

    最近再练手精进 网上弄了段代码 运行发型 bufio.Buffered()永远返回 0

    package main
    
    import (
            "bufio"
            "fmt"
            "strings"
    )
    
    func main() {
            //原始字符串
            str := "12345678901234567890123456789012345678901234567890"
    
            //将字符串转换为流式 I/O 对象
            strReader := strings.NewReader(str)
    
            //设置读缓存区大小
            bufReader := bufio.NewReaderSize(strReader, 16) //16byte
    
            //缓存读
            p := make([]byte, 4)
            n, err := bufReader.Read(p)
            if err != nil {
                    panic(err)
            }
    
            buffered := bufReader.Buffered()
            fmt.Printf("buffered:%d, content:%s\n", buffered, p[:n])
    }
    

    网上搜来搜去只返回一个结果

    13 年前有人 report 过 4 年前也有人遇到过 到现在是不是还没解决?

    https://groups.google.com/g/golang-nuts/c/1smBsPOdFT0

    I'm having a similar problem as the original poster. I expect Buffered() to return the number of bytes that can be read from the current buffer, like the documentation states. However a call to Buffered() returns 0 both before and after a call to any Read() that finds bytes in the buffer. In my case the Reader is a net.Conn.

    How do we use Buffered() properly? This is the only google result I could find that even mentions using the function.

    I ended up solving my problem without using bufio. -Sam

    7 条回复    2023-09-11 11:25:08 +08:00
    klesh
        1
    klesh  
       231 天前
    啥版本?似乎 v1.20+ 没这个问题 https://go.dev/play/p/0Iqldy6RqNY?v=goprev
    darrh00
        2
    darrh00  
       231 天前
    输出:buffered:12, content:1234

    不是 12 吗,哪是 0 ?
    Jooeeee
        3
    Jooeeee  
       231 天前
    试着跑了一下:
    buffered:12, content:1234
    ranleng
        4
    ranleng  
       231 天前
    ❯ go version
    go version go1.20.6 darwin/arm64
    ❯ go run main.go
    buffered:12, content:1234
    lxcForPHP
        5
    lxcForPHP  
       230 天前
    go 1.18 输出: buffered:12, content:1234
    dif
        6
    dif  
       230 天前
    和楼上一样:
    go version
    warning: GOPATH set to GOROOT (D:\devtools\go) has no effect
    go version go1.19.5 windows/amd64

    buffered:12 ,context:1234
    dif
        7
    dif  
       230 天前
    所以,建议这种问题先把版本号发出来
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5339 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 547ms · UTC 07:10 · PVG 15:10 · LAX 00:10 · JFK 03:10
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.