What does the System, out, means in this statement System.out.println()?

Showing Answers 1 - 24 of 24 Answers

sasi komala

  • May 5th, 2007
 

System is a class, out is subclass, println is a method

  Was this answer useful?  Yes

masood

  • Sep 21st, 2007
 

System is  class and out is a static field of outputStream and println is a method of out .

  Was this answer useful?  Yes

ahmed ali

  • Mar 6th, 2010
 

'System' is a predefined class. It is a class capable of giving information regarding your system(C.P.U). It is available in java.lang


'out' is an object of print stream class.

'println' is a method in a print stream class. It is invoked by using the object 'out'

  Was this answer useful?  Yes

SHIVA

  • Sep 3rd, 2011
 

SYSTEM is a predifined class, OUT is a non static variable and the println() is a function is an predifined function it will retrive the value from the class.

  Was this answer useful?  Yes

Ramanjaneyulu

  • Sep 3rd, 2011
 

println() is a method to print the messages on the screen and it is present in printStream class to access this method we need to create object of printStream class the object of printstream class create and placed in one of the predefined class system as a static datamemeber we access the static data member of class by class name so wecall like that System.out

now we call metho println() with respect to object like this System.out.println()

  Was this answer useful?  Yes

sampra

  • Mar 13th, 2012
 

Ystem class has a varible out 9public final static PrintStream out)and PrintStreem has a method println

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions