As shown below :
Method to be overriden:
double add (int a ,int b){
}
Method overridding above method:
int add(int a,int b){
}
With primitive types it is not possible, but there is a feature added to JDK 1.5 called covariant return types. So, using this feature, a subclass could return a more specific type than the one declared on the parent class.
The following code compiles fine in JDK 1.7
public static class A {
Number go() { return 0; };
}
public static class B extends A {
@Override
Integer go() { return 0; }
}
See JLS Example 8.4.8.3-1. Covariant Return Types
No, you cannot change the return type. You can overload a method by providing alternate or additional input.
i.e.
int add(int a, int b, int c)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With