i want to know what each term in System.out.println()
means?
Asked
Active
Viewed 104 times
-2
-
possible duplicate of [Java beginner question: System.out.println](http://stackoverflow.com/questions/999661/java-beginner-question-system-out-println) – durron597 Dec 18 '12 at 12:31
1 Answers
2
System
is a class name, you access the class (not an instance of it) withSystem.*
out
is a class variable in that class of typePrintStream
println()
is a method inPrintStream

amit
- 175,853
- 27
- 231
- 333