Just asking if I have the right understanding
System.out.println();
System is the package out is the class println() is the method
If t
No, your understanding is wrong.
"Then What is right" -
System - a class,
System
out - a static public member of type PrintStream ,
out
PrintStream
and oh yes println() is a method.
println()
You were 33% right ;) read java documentation for this here