explain System.out.println
Answer Posted / shyam
It is quite simple to understand the question but to answer it we need to dig deeper in to java native code.
System is static class and cannot be instantiated
out is a reference variable defined in System
println() is the method used to print on standard output.
A <a href = "http://www.javastudychannel.com/forum/2114-What-out-System.out.println-Java.aspx">brief and nice explanation</a> is always welcome on this as we can learn much from this single line of statement itself!!
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the name of the java compiler?
How java uses the string and stringbuffer classes?
Is a class subclass of itself?
Which class cannot be a subclass in java?
What is variable and rules of variable?
How is string stored in java?
What are the common uses of "this" keyword in java ?
What do you mean by exception handling in Java?
Is 9 a prime number?
Is zero a positive integer?
What is the static method?
Can we override static methods in java?
What is a nullable field?
What is a variable simple definition?
Why is stringbuffer called mutable?