这行代码我尝试读源码,发现这样一段
//FilterOutputStream.java
public void write(int b) throws IOException {
out.write(b);
}
进一步跟踪
//OutputStream.java
private void ensureOpen() throws IOException {
if (this.closed) {
throw new IOException("Stream closed");
}
}
public void write(int b) throws IOException {
this.ensureOpen();
}
然而这段代码并没有使用参数b。有没有大佬能解答我的疑问。