what is the difference between System.out.println and out.println in java
Answer Posted / vigneshwaran r.r
:) OMG.... out.println() is used in JSP, ofcourse right, but one thing we have to notice is, we had created the object for the class PrintWriter as "out". so we use that in JSP, if we create object for that PrintWriter class as "hello", we have to print line as hello.println()..
System.out.println() is the standard method that used to print a line. here System is the Class and out is its object and println() or print() are the method that are in the System class. Generally System class has three object in-built (in, out, err)
| Is This Answer Correct ? | 24 Yes | 3 No |
Post New Answer View All Answers
If your ui seems to freeze periodically, what might be a likely reason?
To identify IDL language what mapping mechanism is used?
Explain what is orm?
How would you create a button with rounded edges?
which type of objects reference will be given to client?
how to use debug in my elipse to solve problems that exist in my project
Are there books about seam?
Do you think that java should have had pointers?
What is Stream Tokenizer?
what are the activation groupworks?
what is the use of State Factories?
What is the purpose of the notify() method?
What is a clone?
What is the purpose of the notifyall() method?
Difference between new operator and class.forname().newinstance()?