how system.out.println() works?
Answers were Sorted based on User's Feedback
Answer / subbu
//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();
//...
}
java.lang package is default package hence no need to import
additionaly to use System class
System is having static reference of PrintStream class whihc
has println() method.
So we can directly acces the println() using out referece.
System.out.println();
| Is This Answer Correct ? | 16 Yes | 0 No |
Answer / manish
In system.out.println()
'System' is a class which is having reference variable 'out' of type printStream class, and PrintStream class having overlaodded methed 'println()' for different purposes..
| Is This Answer Correct ? | 7 Yes | 0 No |
what is the difference between thread and runnable types? : Java thread
How many bytes is double?
How do constructors use this() and super()?
What is the use of ?this??
How to create a base64 decoder in java8?
how session will be expired?
What are different types of control structures?
Is main an identifier?
Tell some latest versions in JAVA related areas?
What is a superclass?
What ide should I use for java?
can java object be locked down for exclusive use by a given thread? : Java thread