Possible Duplicate:
java: “final” System.out, System.in and System.err?
Direct setting of System.out
,
System.out = null; //gives error that it is final and that's understood
But have a look at this:
System.setOut(null); //allows to set out ??
But how is that possible if out
is final
?