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
System is not a package. It is a class which is contained inside java.lang package
System
class
java.lang
Take a look here http://docs.oracle.com/javase/7/docs/api/java/lang/System.html
out is a PrintStream object (static in case of System class) in which println() is one of the methods
out
PrintStream
static
println()