Consider below one :
Object nothingToHold = null;
System.out.println(nothingToHold); // Safely prints \'null\'
Here, Sysout must be expe
Here is documentation for println()
Prints a string followed by a newline. The string is converted to an array of bytes using the encoding chosen during the construction of this stream. The bytes are then written to the target stream with write(int).
If an I/O error occurs, this stream's error state is set to true.
NULL
can convert to bytes.