Can an ArrayList of Node contain a non-Node type?
Is there a very dirty method of doing this with type casting?
|
Can an ArrayList of Node contain a non-Node type? Is there a very dirty method of doing this with type casting? |
|||
|
|
|
Yes, but you will get class cast exceptions if you try to access a non-node element as if it were a node. Generics are discarded at (for) runtime. For example:
|
||||
|
|
|
Given:
then:
or
will do the hack. Ick. I feel dirty. But, you should not do this. If you really need to mix types, then do this:
That solution, at least, will indicate to others that they have to beware that any subclass of Object can be in the list. |
|||
|
|
|
Assuming you are using Generic to have an ArrayList, you can add non-Node into it by using reflection because during runtime the type information is not kept. Depend on how you get the object out of the ArrayList, you might get hit by ClassCastException. If you really have a need on non-specific type in your ArrayList, then why don't you just use it without Generic? |
|||
|
|