explain System.out.println

Answer Posted / vinod pillai

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.

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)

Example:

class Student
{
final int value=30;

void display()
{
System.out.println("Final Value is:"+value);
}
}

class Temp
{
static Student obj1=new Student();
}

class Main_String_Prog
{
public static void main(String args[])
{

Temp.obj1.display();
}
}

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Define max and min heap, also the search time of heap.

594


what is the volatile modifier for? : Java thread

523


What is split return?

494


How do you do absolute value in java?

525


What is return used for in java?

522






Can we override compareto method?

507


What is the use of jtable?

652


What is the difference between length and length () in java?

527


Is intellij better than eclipse?

544


Can arraylist contain null values?

568


Is null a string in java?

558


What is e java?

560


Break statement can be used as labels in java?

555


Can we create an object if a class doesn't have any constructor ( not even the default provided by constructor ) ?

555


What is the purpose of finalization in java programming?

565