I want to have a Class object, but I want to force whatever class it represents to extend class A and implement interface B.

I can do:

Class<? extends ClassA>

Or:

Class<? extends InterfaceB>

but I can't do both. Is there a way to do this?

link|improve this question

feedback

1 Answer

up vote 94 down vote accepted

Actually, you can do what you want. If you want to provide multiple interfaces or a class plus interfaces, you have to have your wildcard look something like this:

<T extends ClassA & InterfaceB>

See the Generics Tutorial at sun.com, specifically the Bounded Type Parameters section, at the bottom of the page. You can actually list more than one interface if you wish, using & InterfaceName for each one that you need.

This can get arbitrarily complicated. To demonstrate, see the JavaDoc declaration of Collections#max, which (wrapped onto two lines) is:

public static <T extends Object & Comparable<? super T>> T
                                           max(Collection<? extends T> coll)

why so complicated? As said in the Java Generics FAQ: To preserve binary compatibility.

It looks like this doesn't work for variable declaration, but it does work when putting a generic boundary on a class. Thus, to do what you want, you may have to jump through a few hoops. But you can do it. You can do something like this, putting a generic boundary on your class and then:

class B { }
interface C { }

public class MyClass<T extends B & C> {
    Class<T> variable;
}

to get variable that has the restriction that you want. For more information and examples, check out page 3 of Generics in Java 5.0

link|improve this answer
Good Info! Thanks! – ScArcher2 Sep 18 '09 at 19:36
But why do I have to cast the object to T when returning it? – New Talk Nov 18 '11 at 15:48
@BernhardV: You need to provide more information before I can answer it. In what situation do you need to cast? – Eddie Dec 7 '11 at 0:04
2  
This is helpful. It's worth mentioning that the class must come first, you cannot say '<T extends InterfaceB & ClassA>'. – EricS Feb 28 at 21:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.