Java / Methods
Explain System.out.println().
System.out.println() is used to print the message on the console. System is a class present in java.lang package. The "out" is the static variable of type PrintStream class present in the System class. println() is the method present in the PrintStream class.
More Related questions...