当前位置: 代码迷 >> Java相关 >> [讨论]关于java的InputStream.read源代码不解?
  详细解决方案

[讨论]关于java的InputStream.read源代码不解?

热度:189   发布时间:2006-03-14 15:27:00.0
[讨论]关于java的InputStream.read源代码不解?

public int read(byte b[], int off, int len) throws IOException {

if (b == null) {

throw new NullPointerException();

} else if ((off < 0) || (off > b.length) || (len < 0) ||

((off + len) > b.length) || ((off + len) < 0)) {

throw new IndexOutOfBoundsException();

} else if (len == 0) {

return 0;

}

int c = read();

if (c == -1) {

return -1;

}

b[off] = (byte)c;

int i = 1;问题1请看最下面的

try {

for (; i < len ; i++) {

c = read();

if (c == -1) {

break;

}

if (b != null) {

b[off + i] = (byte)c;

}

}

} catch (IOException ee) {

}

return i;

}


把前面的第一次读取放到后面的循环中让i开始为0不是一样的效果吗?sun为什么要分开这么做呢

[此贴子已经被作者于2006-3-14 15:31:36编辑过]

搜索更多相关的解决方案: 源代码  java  InputStream  read  讨论  

----------------解决方案--------------------------------------------------------
55没人注意吗?
----------------解决方案--------------------------------------------------------
  相关解决方案