What is the meaning of the type safety warning in certain Java generics casts? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T08:29:38Zhttp://stackoverflow.com/feeds/question/382http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/382/what-is-the-meaning-of-the-type-safety-warning-in-certain-java-generics-casts2What is the meaning of the type safety warning in certain Java generics casts?Mike Stone2008-08-02T08:58:27Z2008-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<Integer> list = (List<Integer>) object;<br></code></pre>
http://stackoverflow.com/questions/382/what-is-the-meaning-of-the-type-safety-warning-in-certain-java-generics-casts/384#3849Answer by Mike Stone for What is the meaning of the type safety warning in certain Java generics casts?Mike Stone2008-08-02T08:58:48Z2008-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<String>, 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<?> list = (List<?>) 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#4740Answer by svrist for What is the meaning of the type safety warning in certain Java generics casts?svrist2008-08-02T15:44:06Z2008-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#9330Answer by Shadow_x99 for What is the meaning of the type safety warning in certain Java generics casts?Shadow_x992008-08-04T00:56:48Z2008-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#132401Answer by Brian Laframboise for What is the meaning of the type safety warning in certain Java generics casts?Brian Laframboise2008-08-16T16:57:15Z2008-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#964642Answer by ddimitrov for What is the meaning of the type safety warning in certain Java generics casts?ddimitrov2008-09-18T20:19:04Z2008-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>