explain System.out.println
Answer Posted / sarbbottam bandyopadhyay
System is a class, which belongs to package java.lang
out is a class variable (static final field) of system class of PrintStream class.
PrintStream class has the method println().
The return type of println() is void and has overloading.
Please refer to the API documentation of System class.
http://download.oracle.com/javase/1.4.2/docs/api/java/lang/System.html
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What about static nested classes in java?
Explain the difference between serializable and externalizable in java?
What is function overriding and overloading in java?
What is sleep method?
Is minecraft java edition free?
Can you extend main method in java?
What is meant by javabeans?
What is the return type of the main method?
Why is it called boolean?
What is the largest number a double can hold?
what is the volatile modifier for? : Java thread
Why set do not allow duplicates in java?
Is it possible to write a regular expression to check if string is a number?
Explain importance of throws keyword in java?
Why string is not a wrapper class?