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 do you mean by hashing?
What is difference between null and void?
Which package is always imported by default?
What is args length in java?
What is the difference between array and array list in java?
Why heap memory is called heap?
explain autoboxing in java?
Is {a, n, d} a palindrome? If you are given a random string, is it a palindrome or not?
What is string pooling concept?
Why collection doesn’t extend cloneable and serializable interfaces?
What is the full meaning of java?
What is io stream in java?
What is the exact difference in between Unicast and Multicast object? Where will it be used?
What is the use of beaninfo?
Does java return by reference?