explain System.out.println
Answer Posted / anil kumar
System is a final class in java.lang package
println() is a method define in PrintStream class of
java.io package.
the Printstream class like as
Class PrintStream
{
public void print()
{..........}
public void println(String a)
{...........}
..
..
..
}
and the System class like as
class System
{
public static void PrintStream out;
..
..
out=new PrintStream();
}
this is clear that System is a class and println is a
method but what is out.
out is a reference variable of PrintStream Type that hold
the object of printstream class;
out is a static type so it can be call with its class name
so we can access out with System.out and then we can call
println method on this out object
System.out.println();
now why sunmicrosystem do this
because we haveto not create a new object of Printstream
class for each time when we call println mehod
now we can call println method with the help of precreated
object of printStream class
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is javac used for?
What is pangram in java?
Is java still relevant?
What is a map in java?
Why pass by reference is not possible in java?
What is replaceall in java?
Why can't we make a class private in java?
Which are different kinds of source code?
How do you detect memory leaks?
Explain differences between checked and unchecked exceptions in java?
What is the purpose of void class?
What is update method called?
What is singleton class example?
What data type is true or false?
What is variable and constant explain with example?