define System.out.println(); what is the meaning!
Answer Posted / sagar g
System : The System is a class and cannot be instantiated.
out : Its a static field with type PrintStream of System
class and object of PrintStream class.
println : Its a method of PrintStream class.
As "println()" is a method of PrintStream class and "out"
is an object of PrintStream class, object can call its
public method "println()"
out.println();
Since "out" is static , it so that it is called using class
name "System"
System.out.println()
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the gregoriancalendar class in java programming?
What are the differences between c++ and java?
What is the hashcode () and equals () used for?
Howto get an object that will perform date & time calculations then format it for output in some different locales with different date style.can ne1 tel me the answer of this question.pls
How do I print a “?
What is the method to declare member of a class static?
Can we force the garbage collection to run?
What is tostring () method?
What does index mean in java?
What are the 4 versions of java?
Can we overload run() method in java?
Explain what are final variable in java?
What is OOP's Terms with explanation?
What are functions in java?
What is meant by class?