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 webservices?
. What are the differences between constructor and method of a class in Java?
how do you store phone numbers using java collections
What is UNICODE?
How hashset works internally in java?
Why heap memory is called heap?
Explain about join() method?
What is a war file?
What is a locale?
What restrictions are placed on method overriding in java programming?
what is aberivation of java?
How to make a class or a bean serializable?