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 stringwriter?
What will happen if a thrown exception is not handled?
What is stringbuffer in java?
Can we able to pass objects as an arguments in java?
What is the difference between java applets and applications?
Is singleton class immutable?
What is a singleton class? Give a practical example of its usage.
Is it safe to install java on my computer?
What is numeric function?
Can vector have duplicates in java?
What are the basic concepts of OOPS in java?
What is instance example?
when a request is generated from apache tomcat 5.5 and goes to oracle 10g or mysql,,, how the oracle or mysql reads the request as apache is a web server and oracle 10g is application server? when the oracle 10g provides response, how the apche tomcat reads it???
What are encapsulation, inheritance and polymorphism?
What is the purpose of the finally clause of a try-catch-finally statement in java programming?