Wednesday, January 16, 2013

Meaning Of System.out.println in Java

Consider,


class PrintStream
{
void println()
                {  }
}

class System
{

static PrintStream out;
 }


Hence,

 System is a CLASS

 out is OBJECT

 println() is METHOD.


0 comments:

Post a Comment