If I say System.out.println("java expert");. How JVM will looks this statement. Whats the behind process would be?

Questions by vazirahamed   answers by vazirahamed

Showing Answers 1 - 2 of 2 Answers

t.s.saravanan

  • Apr 9th, 2006
 

System.out.println  is a statement used to print java expert string here System represents a class, out represents the instance of an PrintStream class and println is the method in the printStreamclass'

  Was this answer useful?  Yes

MUTHU

  • Nov 13th, 2006
 

hi In System.out.println() statement,System is predefinedclass . out is predefined object for displaying output in monitor.println is predefined method for printing statement in monitor.so,whenever call or invoke this statemeny, JVM goes to System class.it is invoked by out object.println() method invoked by . (dot)operator by out object

  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