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


Please Help Members By Posting Answers For Below Questions

How many decimal digits is 64 bit?

536


What are jee technologies?

540


Explain about fail safe iterators in java?

570


What is lambda programming?

501


Can java run on google chrome?

582






Explain about complier design(phases)

632


What is the advantage of functional interface in java 8?

530


What is bifunction in java?

684


What is t in generics in java?

565


How is it possible for two string objects with identical values not to be equal under the == operator?

530


What is the use of runnable interface?

619


What is matcher in java?

520


What does main method?

568


Why do we need array in java?

537


What is independent and dependent variables in research?

474