Can two Java methods have same name with different return type?
The return type of a method are diffirent, they are declared in the same name of the method.
Is that allowed?
|
Can two Java methods have same name with different return type? The return type of a method are diffirent, they are declared in the same name of the method. Is that allowed? |
|||||||||||||
|
|
If both methods have same parameter types, but different return type than it is not possible. From Java Language Specification:
If both methods has different parameter types (so, they have different signature), then it is possible. It is called overloading. |
|||||
|
|
Only, if they accept different parameters.
|
|||
|
|
|
According the JLS, you cannot however due to a feature/bug in the Java 6/7 compiler (Oracle's JDK, OpenJDK, IBM's JDK) you can have different return types for the same method signature if you use generics.
Prints
For more details, read my article here |
|||||
|
|
No. C++ and Java both disallow overloading on a functions's return type. The reason is that overloading on return-type can be confusing (it can be hard for developers to predict which overload will be called). In fact, there are those who argue that any overloading can be confusing in this respect and recommend against it, but even those who favor overloading seem to agree that this particular form is too confusing. |
|||||
|
|
You can have two methods with the same arguments and different return types only if one of the methods is inherited and the return types are compatible. For example:
|
|||
|
|