How do I use generics with an array of Classes?
|
I want to create an array of Classes, each representing a type that is available in the system I'm building. All the Classes involved are subclasses of a common superclass. So I'd like to do:
This gives me the error:
I get the same message if I try to qualify the creation of the array on the right hand side of the initialization:
I can get the code to compile if I eliminate the generics qualifications:
But then I get the generics warning: Class is a raw type. References to generic type Class should be parameterized. I'm trying; I'm trying! :) Also, at this point, even if this didn't provoke a warning, I lose a piece of the interface I was trying to define. I don't want to just return an array of arbitrary classes; I want to return an array of classes that are all subclasses of a particular SuperClass! Eclipse has some pretty powerful tools for figuring out what parameters to use to fix generics declarations, but in this case it falls down, as it tends to do when you deal with Class. The "Infer Generic Type Arguments" procedure it offers doesn't change the code at all, leaving the warning. I was able to work around this by using a Collection instead:
But what's the right way to do this with arrays? |
|||
|
add a comment
|
|
It seems a bit defeatist, but problems like this are precisely the reason why most people avoid mixing arrays and generics. Because of the way generics are implemented (type erasure), arrays and generics will never work well together. Two workarounds:
|
||||
|
The right way to do this with arrays is to do it with a Collection. Sorry! For a complicated set of reasons, arrays don't play nice with generics. Arrays have a different covariance model than generic objects do, which ultimately causes the problems you are running into. For example, with arrays, but not (normally) with generic objects, you can legally do this:
while you cannot do this:
If you want more detail, you can see the Arrays In Java Generics page from the excellent Generics FAQ As simonn said, you can also just use your arrays as they are, and use |
|||||
|
|
Use this syntax:
It will give you an "unchecked" warning, and rightly so, since you might be including a |
|||
There's no type-safe way to do this; using the collection is the right approach. To see why, imagine if this were allowed. You could have a situation like this:
The type system needs to detect whether a basket that gets added to the array is of the type Because of type erasure, the JVM can only see the runtime type of the array. At runtime, we need to compare the array type to the element type to make sure they match. The array's runtime component type is |
||||
|
The problem is that it is illegal to create an array of a generic type. The only way to get around it is by casting to the generic type when you create the array, but that's not a very good solution. (Note that it is possible to use a generic array, just not create one: see this question.) You should almost always be using lists instead of arrays anyway, so I think you came up with the best solution already. |
|||
|
Not type safe and with unchecked cast warning:
|
|||
浙公网安备 33010602011771号