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 |
Why const and goto are reserved keyword in java?
How a variable is stored in memory?
how to create a jar file in java
Give differences between Quicksort & Mergesort. When should these sorts be used and what is their running time?
Why method overloading and method overriding required in java?
What is maximum size of arraylist in java?
What is a Java switch statement, and how can it be used?
How do you define a method?
How can u increase the heap size in the memory?
Can we sort array in java?
What is hard code & soft code?
What is double checked locking in singleton?