explain System.out.println

Answer Posted / neojava

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 ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What do you mean by formatting?

547


What is a treemap in java?

538


What is another word for methodology?

518


Why is it called boolean?

525


What is identifier with example?

570






What is the importance of static variable?

588


How to use string tokenizer class.

620


What is a priority queue java?

526


Is it necessary that each try block must be followed by a catch block?

557


How do you reverse a string in java?

583


What is the differences between heap and stack memory in java? Explain

535


What are some examples of variable costs?

490


What is a newline character in java?

566


What access modifiers can be used for variables?

585


Difference between final and effectively final ? Why is effectively final even required ?

554