Sometime when looking through code, I see many methods specify an annotation:
@SuppressWarnings("unchecked")
What does this mean?
|
Sometime when looking through code, I see many methods specify an annotation:
What does this mean? |
||||
|
|
|
Sometimes Java generics just doesn't let you do what you want to, and you need to effectively tell the compiler that what you're doing really will be legal at execution time. I usually find this a pain when I'm mocking a generic interface, but there are other examples too. It's usually worth trying to work out a way of avoiding the warning rather than suppressing it (the Java Generics FAQ helps here) but sometimes even if it is possible, it bends the code out of shape so much that suppressing the warning is neater. Always add an explanatory comment in that case! The same generics FAQ has several sections on this topic, starting with "What is an "unchecked" warning?" - it's well worth a read. |
|||||||||||||
|
|
It is an annotation to suppress compile warnings about unchecked generic operations (not exceptions - edited thanks to Skeet), such as casts. It essentially implies that the programmer did not wish to be notified about these which he is already aware of when compiling a particular bit of code. You can read more on this specific annotation here: Additionally, Sun provides some tutorial documentation on the usage of annotations here: As they put it,
|
||||
|
|
|
The SuppressWarning annotation is used to suppress compiler warnings for the annotated element. Specifically, the |
|||
|
|
|
As far I know, for now it has to do with suppressing warnings about generics; generics are a new programming construct not supported in JDK versions earlier than JDK 5, so any mixes of the old constructs with the new ones might pose some unexpected results. The compiler warns the programmer about it, but if the programmer already knows, they can turn those dreaded warnings off using SuppressWarnings. |
|||||||
|
|
One trick is to create an interface that extends a generic base interface...
Then you can check it with instanceof before the cast...
|
|||
|
|
|
You can suppress the compiler warnings and tell the generics that the code which you had written is legal according to it. Example:
|
||||
|
|
|
It could also mean that the current Java type system version isn't good enough for your case. There were several JSR propositions / hacks to fix this: Type tokens, Super Type Tokens, Class.cast(). If you really need this supression, narrow it down as much as possible (e.g. don't put it onto the class itself or onto a long method). An example:
|
|||
|
|