What is the meaning of System.out.println in java | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is the meaning of System.out.println in java

7th Dec 2017, 2:02 PM
Pula Srinivasarao
3 Answers
+ 12
System.out.println is a standard output function used in java. where System specifies the package name, out specifies the class name and println is a function in that class which is used to print data . https://javapapers.com/core-java/system-out-println/
7th Dec 2017, 2:17 PM
GAWEN STEASY
GAWEN STEASY - avatar
+ 2
The meaning of it is to print out relevant data that the code runs in to during execution time. This is especially good for debugging, especially if you aren't dealing with GUI applications. I would really refer you to the Java course we have here in SoloLearn. https://code.sololearn.com/cF6TGa9u5355/?ref=app
7th Dec 2017, 2:18 PM
eRosz
eRosz - avatar
+ 1
System is a class in the java.lang package.out is a static member of the System class, and is an instance of java.io.PrintStream .println is a method of java.io.PrintStream . 
7th Dec 2017, 2:17 PM
Ashwini B S
Ashwini B S - avatar