-2

i want to know what each term in System.out.println() means?

Rahul
  • 15,979
  • 4
  • 42
  • 63
Surya
  • 23
  • 1
  • 3
  • 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 Answers1

2
  • System is a class name, you access the class (not an instance of it) with System.*
  • out is a class variable in that class of type PrintStream
  • println() is a method in PrintStream
amit
  • 175,853
  • 27
  • 231
  • 333