I was trying to do something like:
public class MyClass <A, B, C <A, B> > {
...
}
But Eclipse highlights "B," and says "unexpected , expected extends". What gives? Are nested generics not allowed?
|
It's because you haven't defined
|
|||||||||||
|
|
You don't have to declare nested types like that. Simply
And when you create a MyClass, you could do something like
|
|||||||||||||
|
|
If your template parameters don't share share a class hierarchy, you can use an interface. For example:
|
|||||||
|
|
I am guessing you want MyClass to be a generic class with type parameters A, B, and C. Furthermore you want C to be a generic class with type parameters A and B. So that I could write
Then I don't think you can do that. |
|||||||||||
|
|
This is not possible in Java. See the Type Variables section of the language definition along with Generic Classes and Type Parameters. I recently saw (somewhere) a mention that Java is incapable of this but Scala can do it. This is confirmed by S4.4 of the Scala Language Specification. This is also somewhat confirmed by the following code compiling successfully.
Compiling in java yielded the follwing answers.
I would guess that there is an easier solution to your problem however, as this is somewhat unusual. |
|||
|
MyClassshould be able to use it, and that might make your question clearer. – Daniel Pryden Sep 17 '11 at 1:15