explain System.out.println
Answer Posted / mallikarjuna g
System : It is a standard java class. It comes from the
java.lang package. it is bydefault package.
Out : The class system contains static field named "out".
so System.out referes to the value stored in that static
filed. the value System.out is an object of the class
printStream from the standard java package java.io.
Println() : it is the instance method come from the
PrintStream class.
so System.out.println() calls the "Println()" method
associated with the "printStream" object referred to by
static field "out"
| Is This Answer Correct ? | 55 Yes | 12 No |
Post New Answer View All Answers
What do you mean by append?
What is final keyword?
How concurrent hashmap works?
What are some examples of variable costs?
What differences exist between iterator and listiterator?
What are the legal operands of the instanceof operator?
What is flag in java?
Explain throw keyword in java?
Write a code to show a static variable?
Can a source file contain more than one class declaration?
What is a jagged array in java?
What is data type in computer?
How do you empty a list in java?
What is double word?
Is 0 an even number?