how come System.out.println() method prints character on the screen when out is of type print stream which is used to display bytes
|
|
|
|||
|
|
|
I guess this piece of code (from
It is creating a And it is converting bytes to characters using the platform default encoding. |
|||
|
|
|
System.out is a special PrintStream, who's output is displayed on the console. Check here for more documentation. |
|||
|
|
|
|
||||
|
|