Skip to content
Advertisement

Java problem inheriting interface implementation when extending a class

I am struggling to get an interface implementation to be inherited in another class:

I have a generic class that requires compareTo to be implemented. The class is called GenericList and is implemented as:

JavaScript

I have a User class that implements compareTo:

JavaScript

I have no problem creating a GenericList of Users:

JavaScript

If I create a class that extends User and try to create a generic list of that type, I get an error. I have created a class called Instructor:

JavaScript

If I create a generic list using that class:

JavaScript

I get an error:

JavaScript

Shouldn’t it use the inherited compareTo method?

I’ve tried lots of different ways but I can’t get GenericList to use an inherited class like this.

Thanks

Advertisement

Answer

public class GenericList<T extends Comparable<T>>

When you declare GenericList<Instructor>, then the above declaration replaces T with Instructor. So now it says that Instructor must extend (or implement, really) Comparable<Instructor>. The problem is that Instructor extends User which implements Comparable<User> but doesn’t implement Comparable<Instructor>.

So the problem is well before trying to find the inherited compareTo() method. One way to fix the immediate compiler error is to change the GenericList declaration:

JavaScript

This uses a type capture on the Comparable interface.

Now fair warning, I have check that this change will compile here, but otherwise I have not tested it because your question doesn’t provide any usages of GenericList once you create it.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement