Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to define a generic constraint in Java which would be analogous to the following C# generic constratint ?

class Class1<I,T> where I : Interface1, Class2 : I

I'm trying to do it like this:

class Class1<I extends Interface1, T extands I & Class2>

But the compiler complains about the "Class2" part: Type parameter cannot be followed by other bounds.

share|improve this question

2 Answers

up vote 3 down vote accepted

The simplest way I can see of resolving the Java code is to make Class2 an interface.

You cannot constrain a type parameter to extends more than one class or type parameter. Further, you can't use super here.

share|improve this answer

This code compiles here fine:

interface Interface1 {}

class Class2 {}

class Class1<I extends Interface1, T extends Class2 & Interface1> {}

Why do you need the I type there when you assume only Interface1 anyway? (you won't know anything more in your class about I than it extends Interface1)

share|improve this answer
1  
The point is that "T extends Class2 & I" not "T extends Class2 & Interface1" when you specify concrete classes for both parameters – axk Sep 25 '08 at 13:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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