In the System class, in, out, and err are static fields. These fields are declared for example:
public final static InputStream in = nullInputStream();
Why declare nullInputStream() instead of null?
|
In the
Why declare |
||||
|
|
|
The source code has the following comment:
In short, since To resume: it's used to avoid a compiler optimization that should not be made in this very particular case, because System.in is a final field that can change, which is normally impossible. |
|||||||||||
|
|
You are wrong. In Java source code it is written as
not
You can take reference of the source code for the |
|||||||||||||||||
|