Methods cannot be overloaded based on the return types alone. That makes sense as the compiler will not be in a position to differentiate which method is invoked. In the case of overriding something similar is applicable. Why cannot a method which is overriding in a derived class not permitted to have a different return type? The compiler will be able to make out the overriding method but then why does it care about the return types matching? Because of polymorphism. You could have a variable of the type of the superclass which actually refers to an instance of the subclass. Suppose you could do this: class Superclass {
class Subclass extends Superclass {
class Subclass extends Superclass {
Then look at this: Superclass obj = new Subclass(); // Do you expect an int or a String here?
From Java 5 you can use covariant return types.
Which can be of great use in methods like clone(). For instance, Date.clone() could have returned a Date, thereby removing the need for casts. Sun however were either lazy or they simply forgot to change the declared return types for just about every method that could have used it. It's not like returning Date from Date.clone() would have broken any code, it just would have made all the casts unnecessary.
Do you have a Java Problem?
Java Books
Return to : Java Programming Hints and Tips All the site contents are Copyright © www.erpgreat.com
and the content authors. All rights reserved.
|