Когда я прочитал исходный код из java.io.BufferedInputStream.getInIfOpen()
, я смущен тем, почему он написал такой код:
/**
* 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 new IOException("Stream closed");
return input;
}
Почему он использует псевдоним вместо использования переменной поля in
, как показано ниже:
/**
* 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 {
if (in == null)
throw new IOException("Stream closed");
return in;
}
Может ли кто-нибудь дать разумное объяснение?