How can I cast a list using generics in Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T03:31:36Z http://stackoverflow.com/feeds/question/662508 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/662508/how-can-i-cast-a-list-using-generics-in-java 0 How can I cast a list using generics in Java? Ry 2009-03-19T14:53:23Z 2009-03-19T20:35:42Z <p>Please consider the following snippet:</p> <pre><code>public interface MyInterface { public int getId(); } public class MyPojo implements MyInterface { private int id; public MyPojo(int id) { this.id = id; } public int getId() { return id; } } public ArrayList&lt;MyInterface&gt; getMyInterfaces() { ArrayList&lt;MyPojo&gt; myPojos = new ArrayList&lt;MyPojo&gt;(0); myPojos.add(new MyPojo(0)); myPojos.add(new MyPojo(1)); return (ArrayList&lt;MyInterface&gt;) myPojos; } </code></pre> <p>The return statement does a casting that doesn't compile. How can I convert the myPojos list to the more generic list, <strong>without having to go through each item of the list</strong>?</p> <p>Thanks</p> http://stackoverflow.com/questions/662508/how-can-i-cast-a-list-using-generics-in-java/662515#662515 15 Answer by Jon Skeet for How can I cast a list using generics in Java? Jon Skeet 2009-03-19T14:55:58Z 2009-03-19T16:23:48Z <p>Change your method to use a wildcard:</p> <pre><code>public ArrayList&lt;? extends MyInterface&gt; getMyInterfaces() { ArrayList&lt;MyPojo&gt; myPojos = new ArrayList&lt;MyPojo&gt;(0); myPojos.add(new MyPojo(0)); myPojos.add(new MyPojo(1)); return myPojos; } </code></pre> <p>This will prevent the caller from trying to add <em>other</em> implementations of the interface to the list. Alternatively, you could just write:</p> <pre><code>public ArrayList&lt;MyInterface&gt; getMyInterfaces() { // Note the change here ArrayList&lt;MyInterface&gt; myPojos = new ArrayList&lt;MyInterface&gt;(0); myPojos.add(new MyPojo(0)); myPojos.add(new MyPojo(1)); return myPojos; } </code></pre> <p>As discussed in the comments:</p> <ul> <li>Returning wildcarded collections can be awkward for callers</li> <li><p>It's usually better to use interfaces instead of concrete types for return types. So the suggested signature would probably be one of:</p> <pre><code>public List&lt;MyInterface&gt; getMyInterfaces() public Collection&lt;MyInterface&gt; getMyInterfaces() public Iterable&lt;MyInterface&gt; getMyInterfaces() </code></pre></li> </ul> http://stackoverflow.com/questions/662508/how-can-i-cast-a-list-using-generics-in-java/662517#662517 3 Answer by bigbrother82 for How can I cast a list using generics in Java? bigbrother82 2009-03-19T14:56:16Z 2009-03-19T14:56:16Z <p>You should be doing:</p> <pre><code>public ArrayList&lt;MyInterface&gt; getMyInterfaces() { ArrayList&lt;MyInterface&gt; myPojos = new ArrayList&lt;MyInterface&gt;(0); myPojos.add(new MyPojo(0)); myPojos.add(new MyPojo(1)); return myPojos; } </code></pre> http://stackoverflow.com/questions/662508/how-can-i-cast-a-list-using-generics-in-java/662522#662522 0 Answer by Tobias Langner for How can I cast a list using generics in Java? Tobias Langner 2009-03-19T14:58:12Z 2009-03-19T14:58:12Z <p>In this case, I would do it like this:</p> <pre><code>public ArrayList&lt;MyInterface&gt; getMyInterfaces() { ArrayList&lt;MyInterface&gt; myPojos = new ArrayList&lt;MyInterface&gt;(0); myPojos.add(new MyPojo(0)); myPojos.add(new MyPojo(1)); return myPojos; } </code></pre> <p>MyPojo ist of type MyInterface (as it implements the interface). This means, you can just create the List with the Interface you need.</p> http://stackoverflow.com/questions/662508/how-can-i-cast-a-list-using-generics-in-java/662835#662835 0 Answer by starblue for How can I cast a list using generics in Java? starblue 2009-03-19T16:06:10Z 2009-03-19T16:59:59Z <p>Try to use interfaces everywhere except when constructing instances, and you problems will go away:</p> <pre><code>public List&lt;MyInterface&gt; getMyInterfaces() { List&lt;MyInterface&gt; myInterfaces = new ArrayList&lt;MyInterface&gt;(0); myInterfaces.add(new MyPojo(0)); myInterfaces.add(new MyPojo(1)); return myInterfaces; } </code></pre> <p>As others have said already, the use of MyInterface fixes your problem. It is also better to use the List interface instead of ArrayList for return types and variables.</p> http://stackoverflow.com/questions/662508/how-can-i-cast-a-list-using-generics-in-java/663951#663951 0 Answer by Peter Lawrey for How can I cast a list using generics in Java? Peter Lawrey 2009-03-19T20:35:42Z 2009-03-19T20:35:42Z <p>Choosing the right type from the start is best, however to answer your question you can use type erasure.</p> <p><code>return (ArrayList&lt;MyInterface&gt;) (ArrayList) myPojos;</code></p>