| Author |
Generifying a class - unchecked cast
|
D. Ogranos
Ranch Hand
Joined: Feb 02, 2009
Posts: 210
|
|
Hi, yet another generics question (didn't find something similar to this in the search). I have some classes which share a common pattern but make use of specific types. It appears they would be a good candidate for generifying. So far I have created a new abstract generic base class which should take most of the functionality of each current class. However I still get an "unchecked cast" warning.
Is there a way to avoid the unchecked cast warning? Or is it safe to ignore it here? Or is there a better way to write this all?
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
That's actually kind of cheating since Class.cast uses the same unchecked cast, but at least it won't trouble you
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
D. Ogranos
Ranch Hand
Joined: Feb 02, 2009
Posts: 210
|
|
Very nice, thank you!
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
You're welcome.
|
 |
 |
|
|
subject: Generifying a class - unchecked cast
|
|
|