explain System.out.println
Answer Posted / rajeshbg
Syatem.out.println() --> 1. System is a class, which is final.
2. out is the static variable in
System class of type PrintStream.
3. println() is the mathod in
PrintStream class.
See below code,
Public class PrintStream
{
Public void println();
}
final Public class System
{
Public static PrintStream out;
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why is the type for real numbers called double?
What is class variable java?
What is java regex?
What is a char in java?
What is factor r?
What are functions in java?
What is the differences between heap and stack memory in java? Explain
How do you create a sop?
Which eclipse is best for java?
What is methods in java?
Can we extend singleton class in java?
What are the types of web technologies?
What is the main difference between java platform and other platforms?
Explain the concept of hashtables?
What are instance variables?