4
BufferedInputStream, alanı doğrudan kullanmak yerine neden bir alanı yerel bir değişkene kopyalıyor?
Kaynak kodunu okuduğumda, java.io.BufferedInputStream.getInIfOpen()neden böyle bir kod yazdığına dair kafam karıştı: /** * Check to make sure that underlying input stream has not been * nulled out due to close; if not return it; */ private InputStream getInIfOpen() throws IOException { InputStream input = in; if (input == null) throw …