Besides inside a method/constructor body?
Also, is there something that can be returned by a constructor? Or can I only use "return;" without any Expression following it?
|
Besides inside a method/constructor body? Also, is there something that can be returned by a constructor? Or can I only use " |
|||||||||||||||
|
Only in a constructor or method: JLS - http://java.sun.com/docs/books/jls/second_edition/html/statements.doc.html#6767
No JLS - http://java.sun.com/docs/books/jls/second_edition/html/statements.doc.html#6767
Yes JLS - http://java.sun.com/docs/books/jls/second_edition/html/statements.doc.html#6767
|
|||||||
|
|
The source of truth for this and so many other language lawyer questions is the Java Language Specification, in this case section 14.17:
Note that this explicitly calls out that you can use a return statement in a constructor - but it does limit it to constructors and methods. |
|||||||||||||
|
|
return should be followed by value compatible with return type of method. If method is void return does not return anything. Constructors do not have return type at all (by definition). Therefore if you write return statement into constructor it should not be followed by any value. |
|||
|
|
|
I'm not sure about exactly where return statements can be used (or exactly what the specification says). They're most commonly used within methods to return values (or to end methods with no return value). Constructors cannot return any value. Calling a constructor will have the VM allocate memory for the size of the object you're creating and then call upon the appropriate constructor within the object, which is a different process than the process of calling a method. The return statement may be able to be used, but no value can be returned from the constructor itself. To "return" information from a constructor (more appropriately, indicate something is wrong during construction) exceptions can be used instead. |
|||
|
|
|
You can use return without a value in a method with return type void. In other methods this isn't possible. For example
A constructor shouldn't have a return statement inside its body since a Constructor has no return type by definition. EDIT: As Jon Skeet pointed it out, constructors can have return statements with no values, but in most cases this isn't used. |
|||||||
|
|
I prefer to have only one return statement in a method and no return statement in a constructor. One more level of indentation is often a trivial thing to accept in comparison for what you get out of this best practice. It often makes the code much more readable. If I have a local variable for the value that is returned in the end, it often gives me the possibility to declare that variable as final, so that I can be absolutely sure that the variable is assigned exactly once. Often this gives you some insight into the actual complexity of your algorithm. However, I do make use of having several throws statements within a method. Also I prefer to have a Design by Contract with pre-conditions being checked in the beginning of the method and stated in the javadoc. |
|||
|
|