What is the meaning of the type safety warning in certain Java generics casts? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T08:29:38Z http://stackoverflow.com/feeds/question/382 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/382/what-is-the-meaning-of-the-type-safety-warning-in-certain-java-generics-casts 2 What is the meaning of the type safety warning in certain Java generics casts? Mike Stone 2008-08-02T08:58:27Z 2008-10-18T08:34:46Z <p>What is the meaning of the Java warning "Type safety: The cast from Object to List is actually checking against the erased type List"? I get it when I try to cast an Object to a type with generic information, such as in the following code:</p> <pre><code>Object object = getMyList();<br>List&lt;Integer&gt; list = (List&lt;Integer&gt;) object;<br></code></pre> http://stackoverflow.com/questions/382/what-is-the-meaning-of-the-type-safety-warning-in-certain-java-generics-casts/384#384 9 Answer by Mike Stone for What is the meaning of the type safety warning in certain Java generics casts? Mike Stone 2008-08-02T08:58:48Z 2008-08-02T08:58:48Z <p>This warning is there because Java is not actually storing type information at runtime in an object that uses generics. Thus, if 'object' is actually a List&lt;String&gt;, there will be no ClassCastException at runtime except until an item is accessed from the list that doesn't match the generic type defined in the variable. This can cause further complications if items are added to the list with this incorrect generic type information. Any code still holding a reference to the list but with the correct generic type information will now have an inconsistent list. To remove the warning, try:</p> <pre><code>List&lt;?&gt; list = (List&lt;?&gt;) object;<br></code></pre> <p>However, note that you will not be able to use certain methods such as add because the compiler doesn't know if you are trying to add an object of incorrect type. The above will work in a lot of situations, but if you have to use add or some similarly restricted method, you will just have to suffer the yellow underline in Eclipse (or a SuppressWarning annotation).</p> http://stackoverflow.com/questions/382/what-is-the-meaning-of-the-type-safety-warning-in-certain-java-generics-casts/474#474 0 Answer by svrist for What is the meaning of the type safety warning in certain Java generics casts? svrist 2008-08-02T15:44:06Z 2008-08-02T15:44:06Z <p>And this is actually one of the things people have against the current java generics. As far as i remember exactly this could be fixed with <a href="http://gafter.blogspot.com/2006/11/reified-generics-for-java.html" rel="nofollow">reified generics</a></p> http://stackoverflow.com/questions/382/what-is-the-meaning-of-the-type-safety-warning-in-certain-java-generics-casts/933#933 0 Answer by Shadow_x99 for What is the meaning of the type safety warning in certain Java generics casts? Shadow_x99 2008-08-04T00:56:48Z 2008-08-04T00:56:48Z <p>If you want to read more information about Generics and their commonly known uselessness I'd suggest you go to the to this <a href="http://www.clintonbegin.com/2008/02/clintons-java-5-rant.html" rel="nofollow">blog</a></p> http://stackoverflow.com/questions/382/what-is-the-meaning-of-the-type-safety-warning-in-certain-java-generics-casts/13240#13240 1 Answer by Brian Laframboise for What is the meaning of the type safety warning in certain Java generics casts? Brian Laframboise 2008-08-16T16:57:15Z 2008-08-16T16:57:15Z <p>For a comprehensive answer, you can consult a <a href="http://www.infoq.com/resource/articles/bloch-effective-java-2e/en/resources/Bloch_Ch05.pdf" rel="nofollow" title="pdf excerpt">free excerpt (PDF)</a> of the Generics chapter of Java engineer <a href="http://en.wikipedia.org/wiki/Joshua_Bloch" rel="nofollow" title="Joshua Bloch">Joshua Bloch</a>'s <a href="http://rads.stackoverflow.com/amzn/click/0321356683" rel="nofollow" title="Effective Java 2nd Edition">Effective Java 2nd Edition</a>.</p> http://stackoverflow.com/questions/382/what-is-the-meaning-of-the-type-safety-warning-in-certain-java-generics-casts/96464#96464 2 Answer by ddimitrov for What is the meaning of the type safety warning in certain Java generics casts? ddimitrov 2008-09-18T20:19:04Z 2008-10-18T08:34:46Z <p>Another great resource for Java generics is the Angelica Langer's <a href="http://www.angelikalanger.com/GenericsFAQ/JavaGenericsFAQ.html" rel="nofollow">Java Generics FAQ</a></p>