explain System.out.println
Answer Posted / k.venu
System is a built-in class present in java.lang package.
This class has a final modifier, which means that it cannot
be inherited by other classes.
It contains pre-defined methods and fields, which provides
facilities like standard input, output, etc.
out is a static final field (ie, variable)in System class
which is of the type PrintStream (a built-in class,
contains methods to print the different data values).
static fields and methods must be accessed by using the
class name, so ( System.out ).
out here denotes the reference variable of the type
PrintStream class.
println() is a public method in PrintStream class to print
the data values.
Hence to access a method in PrintStream class, we use
out.println() (as non static methods and fields can only be
accessed by using the refrence varialble)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain throw keyword in java?
What is an escape character in java?
What is the point of polymorphism java?
What is hashset in java?
What is numeric function?
Hi.... I applied for the post of scientific officer/Engineer-SB(Programmer).Please post the syllabus and sample papers.
Why are variables important in research?
What is array in java?
What are the different http methods?
What are the data types supported by java?
Give an example of use of pointers in java class.
How do you define a method?
What is included in core java?
Explain method overloading?
What are conditionals and its types?