gpt4 book ai didi

java - 读取流时,为什么不在读取0个字节时停止迭代

转载 作者:行者123 更新时间:2023-12-02 02:51:28 25 4
gpt4 key购买 nike

从流读取时的标准习惯用法是检查 EOF (-1):

while((bytesRead = inputStream.read(buffer)) != -1)

这看起来相当标准 - 我检查了 Apache Commons 等流行库的源代码,它似乎是事实上的标准。

为什么我们不也停在 0 处呢? > -1 不是更好吗?当我们没有阅读任何内容时,为什么要执行循环中的所有工作?

最佳答案

基本上是因为这毫无意义。看documentation :

If the length of b is zero, then no bytes are read and 0 is returned; otherwise, there is an attempt to read at least one byte. If no byte is available because the stream is at the end of the file, the value -1 is returned; otherwise, at least one byte is read and stored into b.

因此,除非您传入一个空缓冲区(这在几乎所有情况下基本上都是一个错误;我个人希望该方法在这种情况下会抛出异常),否则返回值将永远不会为 0嗯>。它将阻塞至少读取一个字节(在这种情况下返回值为 1 或更多),或者到达流末尾(在这种情况下返回值为 -1)。

关于java - 读取流时,为什么不在读取0个字节时停止迭代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43785707/

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