explain System.out.println

Answer Posted / gaurav kamra

System.out.println()

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)

System.out.println();

eg:

int i = 3;
System.out.println(i);


the above code prints the value of 3 in the screen and
brings the control to the next line.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we convert stringbuffer to string?

568


Is java hard to learn?

467


How do you compare values in java?

551


What is the difference between && and & in java?

575


what is an objects lock and which objects have locks? : Java thread

544






How can we pass argument to a function by reference instead of pass by value?

588


What is finalize()? Is finalize() similar to a destructor?

546


What is the return type of the main method?

582


What is the static keyword?

596


Why is method overloading not possible by changing the return type in java?

597


Hi i am creating desktop application in that i want calling to mobile number. i have java telephone api (JTAPI) but i dont understand how it configure & use plese help me

1370


What is e in java?

545


How can you avoid serialization in child class if the base class is implementing the serializable interface?

641


What is tcp and udp?

608


Difference between this() and super() in java ?

620