define System.out.println(); what is the meaning!
Answer Posted / dheeraj singh rajput
System is a class made available by Java to let you
manipulate various operating system related objects. It's
part of java.lang namespace.
out, being one of those objects, is a static publicly
available object inside that class. The object itself,
representing standard output, is an instance of
java.io.PrintStream class. Standard output is, on most
operating systems, console output.
println is a method of java.io.PrintStream class that lets
you output some text into the stream and, as opposed to
print() method, gets you to the new line after the text.
Check out the source for more information.
[EDIT, answer to "Additional details"] You don't need to
import java.io.* because System is part of available to all
Java calls package java.lang (you don't need to import
that). Even though out is an instance of
java.io.PrintStream, it is still declared *inside* the
System class and therefore, you do not need to import java.io.
Of course, implementation of java.lang.System needs to
import java.io (and many other packages). You can see it in
the source:
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Is arraylist ordered in java?
How many bytes is a url?
What means public static?
What is a variable analysis?
Write a java program to find the route that connects between Red and Green Cells. General Rules for traversal 1. You can traverse from one cell to another vertically, horizontally or diagonally. 2. You cannot traverse through Black cells. 3. There should be only one Red and Green cell and at least one of each should be present. Otherwise the array is invalid. 4. You cannot revisit a cell that you have already traversed. 5. The maze need not be in the same as given in the above example
What is the difference between overriding and overloading in OOPS.
Explain listiterator and methods in listiterator?
Can memory leak in java?
Explain the difference between protected and default access.
If system.exit (0); is written at the end of the try block, will the finally block still execute?
What are predicates in java 8?
What is listnode in java?
State the difference between strings and arrays.
What are the advantages of arraylist over arrays?
What is protected in java?