Is it possible to use generics for arrays?
|
|
Arrays are already basic objects types, that is to say they're not a class that describes a collection of other objects like ArrayList or HashMap. You cannot have an array of generified types either. The following is illegal in Java:
This is because arrays must be typed properly by the compiler, and since Java's generics are subject to type erasure you cannot satisfy the compiler this way. |
|||
|
|
I don't think this is possible because an array is a basic datatype. But you can use a ArrayList to have something similar. In most of the cases using a collection of some kind pays of very well. |
|||
|
|
|
Have a look at this site. It should contain all generics related FAQs. On a sidenote:
If you subclass a generic object with a concrete type, that new class can be used as array type. |
||||
|
|
|
Can you use it? Ofc. Example:
Is it a good idea? No. This code is just me playing around with generics. It led to a dark ally. You are better of using collections. They do what you want, and the syntax is prettier in the long run. |
|||
|
|
|
It's possible, but far from pretty. In general, you're better of using the Collections framework instead. See Sun's Generics tutorial, page 15, for a detailed explanation. |
|||
|
|
|
If I ever want to, say, refactor the elements of an array to a better type, like from
This nested class will probably also need constructors that delegate up to the generic type's constructors, depending on what you do when adding new array elements. When passing the elements out of the enclosing class, just cast them up to the generic type:
All this being said, there should rarely be a need to do something like this if you are writing something new from scratch. The only real benefit of arrays over the Collections framework classes is that you can write them out as literals, and this will no longer be an advantage come next year when Java 8 is released. |
|||
|
|
|
Excerpt from Java Generics and collections.
Therefore one is not allowed to have the suntax
However the following is allowed
Now this is not a really good practice. Such casts are not safe and should be avoided. Which in general points to the fact that we should avoid using arrays of generic type. |
|||
|
|
|
If you mean having an array of List then the answer is no. |
|||
|
|
