define System.out.println(); what is the meaning!
Answer Posted / p.nandakishore
System is class in java.lang package
out is a static member of type PrinStream class(java.io)
declared in the System class.static members of a class can
be accessed directly by classname that's why System.out.
println is a method in PrintStream class.out is of type
PrintStream that's why you access println w.r.t out.
why this big statement? because here no need to import any
package, like you include a header file in c or
c++.java.lang is the default package.
| Is This Answer Correct ? | 55 Yes | 8 No |
Post New Answer View All Answers
Explain about data types?
What is %02d?
What is an i/o filter?
What is super in java?
What does it mean that a method or field is “static”?
Explain the purpose of garbage collection in Java?
Explain abstract class in java?
What do you mean by stream pipelining in java 8?
Can we use this () and super () in a method?
What is time complexity algorithm?
What do you mean by platform independence?
What is the purpose of the System class?
Explain parallel processing in java8?
Can we have return statement in finally clause? What will happen?
What is oop principle in java?