I have a question about the IO classes of Java.
The classes that ending with Reader return the int of the read char.
The classes that ending with Stream return the value of byte of the read byte (from 0 to 255).
So, I don't understand why for the Reader the EOF alert value is -1 and for Stream is null. Why?
Thanks a lot!
A.