Explain the terms System, out and println used in statement System.out.println. | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 1

Explain the terms System, out and println used in statement System.out.println.

Please explain the terms in brief that what it is and for what it is used

7th Jun 2019, 4:49 AM
Varnica Gupta
Varnica Gupta - avatar
1 Réponse
+ 19
Varnica Gupta System.out.println is a Java statement that prints the argument passed, into the System.out which is generally stdout(standard output). System is a class in the java.lang package . ... The println is a method of java.io.PrintStream. This method is overloaded to print message to output destination, which is typically a console or file.
7th Jun 2019, 5:40 AM
Night_fury~
Night_fury~ - avatar