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. This method is overloaded to print message to output destination, which is typically a console or file. 1)System: It is the name of standard class that contains objects that encapsulates the standard I/O devices of your system.
It is contained in the package java.lang.Since java.lag package is imported in every java program by default,therefore java.lang packageis the only package in Java API which doesnot require an import declaration.
2)out:The object out represents output stream(i.e Command window)and is the static data member of the class system.
So note here System.out (System -Class & out- static object i.e why its simply refered by classname and we need not to create any object).
3).println:The println() is method of out object that takes the text string as an argument and displays it to the standard output i.e on monitor screen.
Note:
System -Class
out -static Object
println() -method