Tuesday 2 April 2013

System.out.println()

Leave a Comment
Here is what the different pieces of System.out.println() actually look like: 

//the System class belongs to java.lang package 
class System { 
public static final PrintStream out; 
//... 
} 

//the Prinstream class belongs to java.io package 
class PrintStream{ 
public void println(); 
//... 
} 

0 comments:

Post a Comment