How can I cast a list using generics in Java? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T03:31:36Zhttp://stackoverflow.com/feeds/question/662508http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/662508/how-can-i-cast-a-list-using-generics-in-java0How can I cast a list using generics in Java?Ry2009-03-19T14:53:23Z2009-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<MyInterface> getMyInterfaces() {
ArrayList<MyPojo> myPojos = new ArrayList<MyPojo>(0);
myPojos.add(new MyPojo(0));
myPojos.add(new MyPojo(1));
return (ArrayList<MyInterface>) 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#66251515Answer by Jon Skeet for How can I cast a list using generics in Java?Jon Skeet2009-03-19T14:55:58Z2009-03-19T16:23:48Z<p>Change your method to use a wildcard:</p>
<pre><code>public ArrayList<? extends MyInterface> getMyInterfaces() {
ArrayList<MyPojo> myPojos = new ArrayList<MyPojo>(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<MyInterface> getMyInterfaces() {
// Note the change here
ArrayList<MyInterface> myPojos = new ArrayList<MyInterface>(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<MyInterface> getMyInterfaces()
public Collection<MyInterface> getMyInterfaces()
public Iterable<MyInterface> getMyInterfaces()
</code></pre></li>
</ul>
http://stackoverflow.com/questions/662508/how-can-i-cast-a-list-using-generics-in-java/662517#6625173Answer by bigbrother82 for How can I cast a list using generics in Java?bigbrother822009-03-19T14:56:16Z2009-03-19T14:56:16Z<p>You should be doing:</p>
<pre><code>public ArrayList<MyInterface> getMyInterfaces() {
ArrayList<MyInterface> myPojos = new ArrayList<MyInterface>(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#6625220Answer by Tobias Langner for How can I cast a list using generics in Java?Tobias Langner2009-03-19T14:58:12Z2009-03-19T14:58:12Z<p>In this case, I would do it like this:</p>
<pre><code>public ArrayList<MyInterface> getMyInterfaces() {
ArrayList<MyInterface> myPojos = new ArrayList<MyInterface>(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#6628350Answer by starblue for How can I cast a list using generics in Java?starblue2009-03-19T16:06:10Z2009-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<MyInterface> getMyInterfaces()
{
List<MyInterface> myInterfaces = new ArrayList<MyInterface>(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#6639510Answer by Peter Lawrey for How can I cast a list using generics in Java?Peter Lawrey2009-03-19T20:35:42Z2009-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<MyInterface>) (ArrayList) myPojos;</code></p>