Sytem.out.println(" "); this code what mean
Answers were Sorted based on User's Feedback
Answer / sooraj
It does nothing but print a 'space' and new line to console.
| Is This Answer Correct ? | 15 Yes | 2 No |
Answer / adikeanand@gmail.com
We know that println() method is available in PrintStream class of java.io package.To call any method of a class in java we required object of that class if the method is not static.we know println() is not static,so we required object of PrintStream class object.'System' is class in java and 'out' is static field in 'System' class.In java all static methods and static fields are accessed with class name,so 'out' is static field we access lke System.out that returns the object of PrintStream class with that PrintStream class object we can call methods of PrintStream class.Hence,we call like System.out.println(" "); when we execute this instruction we get one blank space after executing contol goes to next line.
| Is This Answer Correct ? | 12 Yes | 2 No |
What is tight coupling in java?
how can program polindrome using java
Why doesn’t the main method throw an error with no arguments?
How do I open the java control panel?
Can the main method be overloaded?
In a barber shop there are 2 doors. customer come in 1 door, leave in other. minimum # of chairs. barber spend his life in cutting. always barber can cut 1 customer. few chairs in the shop. if barber busy customer waits, if chairs full, customer leave. if no customer, barber sleeps. treat barber and customer as 2 threads. you can use Semaphore class with arrive and depart and count as parameter.
What is an api in java?
Topic- looping,function overloading,nesting ,polymorphism. Aim - to write a function with a name buzz-buds,that will check whether the given numbers are buddies or not on the basis of no. of parameters passed during function calling.
How can the static main method use instance variables?
hibernate3.jar file contain 7 dependency jar files what is that ?
Can you compile java into exe?
What services can invoke lambda?