Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is System, out, println in System.out.println() in Java [duplicate]

Possible Duplicate:
What's the meaning of System.out.println in Java?

I was looking for the answer of what System, out and println are in System.out.println() in the Java. I searched and found a different answer like these:

  • 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)

In another page i find another contrasting definition as

System.out.print is a standard output function used in java. where System specifies the package name, out specifies the class name and print is a function in that class.

I am confused by these. Could anybody please exactly tell me what they are?

like image 797
Dinup Kandel Avatar asked Aug 17 '12 08:08

Dinup Kandel


People also ask

What is System out Println () means in Java?

In Java, System. out. println() is a statement which prints the argument passed to it. The println() method display results on the monitor. Usually, a method is invoked by objectname.

What is the difference between System out Println () and System out print ()?

print() The only difference between println() and print() method is that println() throws the cursor to the next line after printing the desired result whereas print() method keeps the cursor on the same line. print() method.

What is System out Println in Java in stack overflow?

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)


2 Answers

System is a final class from the java.lang package.

out is a class variable of type PrintStream declared in the System class.

println is a method of the PrintStream class.

like image 127
Dangling Piyush Avatar answered Sep 30 '22 15:09

Dangling Piyush


Whenever you're confused, I would suggest consulting the Javadoc as the first place for your clarification.

From the javadoc about System, here's what the doc says:

public final class System extends Object  The System class contains several useful class fields and methods. It cannot be instantiated. Among the facilities provided by the System class are standard input, standard output, and error output streams; access to externally defined properties and environment variables; a means of loading files and libraries; and a utility method for quickly copying a portion of an array.  Since: JDK1.0 

Regarding System.out

public static final PrintStream out The "standard" output stream. This stream is already open and ready to accept output data. Typically this stream corresponds to display output or another output destination specified by the host environment or user. For simple stand-alone Java applications, a typical way to write a line of output data is:       System.out.println(data) 
like image 37
Sujay Avatar answered Sep 30 '22 14:09

Sujay