Generics..? Super T - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T23:47:10Z http://stackoverflow.com/feeds/question/591004 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/591004/generics-super-t 3 Generics..? Super T Kan 2009-02-26T15:25:14Z 2009-02-26T23:22:19Z <p>A) </p> <pre><code>List&lt;? super Shape&gt; shapeSuper = new ArrayList&lt;Shape&gt;(); shapeSuper.add(new Square()); //extends from SHAP shapeSuper.add(new DoubleSquare()); //extends from SQ shapeSuper.add(new TripleSquare()); //extends from DS shapeSuper.add(new Rectangle()); //extends from SHAP shapeSuper.add(new Circle()); //extends from SHAP for (Object object : shapeSuper) { ... } </code></pre> <p>Why must the iteration be of Objects when I can add only Shape and its derivatives?</p> <p>B)</p> <pre><code>List&lt;? super Shape&gt; shapeSuper = new ArrayList&lt;Object&gt;(); shapeSuper.add(new Object()); //compilation error </code></pre> <p>Why does the above line produce a compilation error? </p> http://stackoverflow.com/questions/591004/generics-super-t/591010#591010 0 Answer by Kan for Generics..? Super T Kan 2009-02-26T15:27:32Z 2009-02-26T15:27:32Z <p>First line should read as </p> <p>List&lt;<em>? super Shape</em>> shapeSuper = new ArrayList&lt;<em>Shape</em>>();</p> http://stackoverflow.com/questions/591004/generics-super-t/591011#591011 4 Answer by Paul Tomblin for Generics..? Super T Paul Tomblin 2009-02-26T15:27:51Z 2009-02-26T15:29:13Z <p>Try declaring shapeSuper as <code>List&lt;Shape&gt;</code> instead. Then you can do</p> <pre><code>for (Shape shape : shapeSuper) </code></pre> http://stackoverflow.com/questions/591004/generics-super-t/591056#591056 8 Answer by Dan Dyer for Generics..? Super T Dan Dyer 2009-02-26T15:38:21Z 2009-02-26T15:38:21Z <p>To expand on <a href="http://stackoverflow.com/questions/591004/generics-super-t/591011#591011">Paul's answer</a>, by declaring shapeSuper as List&lt;? super Shape&gt;, you are saying that it can accept any object that is a super class of Shape. Object is a superclass of shape. This means that the common superclass of each of the list's elements is Object.</p> <p>This is why you have to use the Object type in the for loop. As far as the compiler is concerned, the list might contain objects that are not Shapes.</p> http://stackoverflow.com/questions/591004/generics-super-t/591161#591161 2 Answer by bruno conde for Generics..? Super T bruno conde 2009-02-26T15:57:47Z 2009-02-26T15:57:47Z <p><strong>A)</strong></p> <p>Because <code>super</code> indicates the lower bounding class of a generic element. So, <code>List&lt;? super Shape&gt;</code> could represent <code>List&lt;Shape&gt;</code> or <code>List&lt;Object&gt;</code>.</p> <p><strong>B)</strong></p> <p>Because the compiler doesn't know what the actual type of <code>List&lt;? super Shape&gt;</code> is.</p> <p>Your adding an object with <code>shapeSuper.add(new Object());</code> but the compiler only knows that the the generic type of <code>List</code> is a super type of <code>Shape</code> but doesn't know exactly witch one it is.</p> <p>In your example, <code>List&lt;? super Shape&gt;</code> could really be <code>List&lt;ShapeBase&gt;</code> forcing the compiler to disallow the <code>shapeSuper.add(new Object());</code> operation.</p> <p>Remember, <a href="http://www.ibm.com/developerworks/java/library/j-jtp01255.html" rel="nofollow">Generics are not covariant</a>.</p> http://stackoverflow.com/questions/591004/generics-super-t/591292#591292 2 Answer by TMN for Generics..? Super T TMN 2009-02-26T16:22:34Z 2009-02-26T16:22:34Z <p>(Disclaimer: I've never used "super" as a generic wildcard qualifier, so take this with a grain of salt...)</p> <p>For (A), actually you can't add Shape and its derivatives, you can only add Shape and its ancestors. I think maybe what you want is </p> <pre><code>List&lt;? extends Shape&gt; shapeSuper = new ArrayList&lt;Shape&gt;(); </code></pre> <p>Specifying "extends" means Shape and anything derived from Shape. Specifying "super" means Shape and anything Shape descended from.</p> <p>Not sure about (B), unless Object isn't implicit. What happens if you explicitly declare Shape as <code>public class Shape extends Object</code>?</p> http://stackoverflow.com/questions/591004/generics-super-t/591470#591470 4 Answer by Julien Chastang for Generics..? Super T Julien Chastang 2009-02-26T17:06:02Z 2009-02-26T17:06:02Z <p>The "Get and Put Principle" in section (2.4) is a real gem from <a href="http://oreilly.com/catalog/9780596527754/" rel="nofollow">Java Generics and Collections</a>:</p> <blockquote> <p>The Get and Put Principle: use an extends wildcard when you only get values out of a structure, use super wildcard when you only put values into a structure, and don't use a wildcard when you both get and put.</p> </blockquote> <p><img src="http://oreilly.com/catalog/covers/0596527756%5Fcat.gif" alt="alt text" /></p> <p>Also, declaring a type as <code>List&lt;? super Shape&gt; shapeSuper</code> is kind of bad form as it constrains its use. Generally, the only time I use wild cards is in method signatures:</p> <pre><code>public void foo(List&lt;? super Shape&gt; shapeSuper) </code></pre> http://stackoverflow.com/questions/591004/generics-super-t/592450#592450 0 Answer by Nick for Generics..? Super T Nick 2009-02-26T21:08:12Z 2009-02-26T21:30:06Z <p>In reference to the above, I don't think this is correct:</p> <blockquote> <p>by declaring shapeSuper as <code>List&lt;? super Shape&gt; shapeSuper</code> , you are saying that it can accept any object that is a super class of Shape</p> </blockquote> <p>That does seem the intuitive at first glance, but actually I don't think that's how it works. You cannot insert just any superclass of Shape into shapeSuper. superShape is actually a reference to a List which may be restricted to holding a particular (but unspecified) supertype of Shape.</p> <p>Lets imagine Shape implements Viewable and Drawable. So in this case the superShape reference may actually point to a <code>List&lt;Viewable&gt;</code> or a <code>List&lt;Drawable&gt;</code> (or indeed a <code>List&lt;Object&gt;</code>) - but we don't know which one. If it's actually a <code>List&lt;Viewable&gt;</code> you should not be able to insert a <code>Drawable</code> instance into it - and the compiler will prevent you from doing this.</p> <p>The lower bound construct is still actually very useful in making generic classes more flexible. In the following example it allows us to pass into the addShapeToSet method a Set defined to containing any superclass of Shape - and we can still insert a Shape into it:</p> <pre><code>public void addShapeToSet(Set&lt;? super Shape&gt; set) { set.add(new Shape()); } public void testAddToSet() { //these all work fine, because Shape implements all of these: addShapeToSet(new HashSet&lt;Viewable&gt;()); addShapeToSet(new HashSet&lt;Drawable&gt;()); addShapeToSet(new HashSet&lt;Shape&gt;()); addShapeToSet(new HashSet&lt;Object&gt;()); } </code></pre> http://stackoverflow.com/questions/591004/generics-super-t/592913#592913 0 Answer by ThisIsTheDave for Generics..? Super T ThisIsTheDave 2009-02-26T23:22:19Z 2009-02-26T23:22:19Z <p>For your example, you can use a plain <code>List&lt;Shape&gt;</code> like Dan and Paul said; you don't need to use the wildcard question mark syntax such as <code>List&lt;? super Shape&gt;</code> or <code>List&lt;? extends Shape&gt;</code>). I think your underlying question may be, "when would I use one of the question mark style declarations?" (The Get and Put Principle that Julien cites is a great answer to this question, but I don't think it makes much sense unless you see it in the context of an example.) Here's my take at an expanded version of the Get and Put Principle for when to use wildcards.</p> <p>Use <code>&lt;? extends T&gt;</code> if...</p> <ul> <li>A method has a generic class parameter <code>Foo&lt;T&gt;</code> readSource</li> <li>The method GETS instances of T from readSource, and doesn't care if the actual object retrieved belongs to a subclass of T.</li> </ul> <p>Use <code>&lt;? super T&gt;</code> if...</p> <ul> <li>A method has a generic class parameter <code>Foo&lt;T&gt;</code> writeDest</li> <li>The method PUTS instances of T into writeDest, and doesn't care if writeDest also contains objects that are subclasses of T.</li> </ul> <p>Here's a walkthrough of a specific example that illustrates the thinking behind wildcards. Imagine you are writing a processSquare method that removes a square from a list, processes it, and stores the result in an output list. Here's a method signature:</p> <pre><code>void processSquare(List&lt;Square&gt; iSqua, List&lt;Square&gt; oSqua) { Square s = iSqua.remove(0); s.doSquare(); oSqua.add(s); } </code></pre> <p>Now you create a list of DoubleSquares, which extend Square, and try to process them:</p> <pre><code>List&lt;DoubleSquare&gt; dsqares = ... List&lt;Square&gt; processed = new ArrayList&lt;Square&gt;; processSquare(dsqares, processed); // compiler error! dsquares is not List&lt;Square&gt; </code></pre> <p>The compiler fails with an error because the type of dsquares <code>List&lt;DoubleSquare&gt;</code> doesn't match the type of the first parameter to processSquare, <code>List&lt;Square&gt;</code>. Perhaps a DoubleSquare is-a Square, but you need to tell the compiler that a <code>List&lt;DoubleSquare&gt;</code> is-a <code>List&lt;Square&gt;</code> for the purposes of your processSquare method. <strong>Use the <code>&lt;? extends Square&gt;</code> wildcard to tell the compiler that your method can take a List of any subclass of Square.</strong></p> <pre><code>void processSquare(List&lt;? extends Square&gt; iSqua, List&lt;Square&gt; oSqua) </code></pre> <p>Next you improve the application to process Circles as well as Squares. You want to aggregate all your processed shapes in a single list that includes both circles and squares, so you changed the type of the processed list from a <code>List&lt;Square&gt;</code> to a <code>List&lt;Shape&gt;</code>:</p> <pre><code>List&lt;DoubleSquare&gt; dsqares = ... List&lt;Circle&gt; circles = ... List&lt;Shape&gt; processed = new ArrayList&lt;Square&gt;; processSquare(dsqares, processed); // compiler error! processed is not List&lt;Square&gt; </code></pre> <p>The compiler fails with a new error. Now the type of the processed list <code>List&lt;Shape&gt;</code> doesn't match the 2nd parameter to processSquare, <code>List&lt;Square&gt;</code>. <strong>Use the <code>&lt;? super Square&gt;</code> wildcard to tell the compiler that a given parameter can be a List of any <em>superclass</em> of Square.</strong></p> <pre><code>void processSquare(List&lt;? extends Square&gt; iSqua, List&lt;? super Square&gt; oSqua) </code></pre> <p>Here's the full source code for the example. Sometimes I find it easier to learn stuff by starting with a working example and then breaking it to see how the compiler reacts. </p> <pre><code>package wild; import java.util.ArrayList; import java.util.LinkedList; import java.util.List; public abstract class Main { // In processing the square, // I'll take for input any type of List that can PRODUCE (read) squares. // I'll take for output any type of List that can ACCEPT (write) squares. static void processSquare(List&lt;? extends Square&gt; iSqua, List&lt;? super Square&gt; oSqua) { Square s = iSqua.remove(0); s.doSquare(); oSqua.add(s); } static void processCircle(List&lt;? extends Circle&gt; iCirc, List&lt;? super Circle&gt; oCirc) { Circle c = iCirc.remove(0); c.doCircle(); oCirc.add(c); } public static void main(String[] args) { // Load some inputs List&lt;Circle&gt; circles = makeList(new Circle()); List&lt;DoubleSquare&gt; dsqares = makeList(new DoubleSquare()); // Collated storage for completed shapes List&lt;Shape&gt; processed = new ArrayList&lt;Shape&gt;(); // Process the shapes processSquare(dsqares, processed); processCircle(circles, processed); // Do post-processing for (Shape s : processed) s.shapeDone(); } static class Shape { void shapeDone() { System.out.println("Done with shape."); } } static class Square extends Shape { void doSquare() { System.out.println("Square!"); } } static class DoubleSquare extends Square {} static class Circle extends Shape { void doCircle() { System.out.println("Circle!"); } } static &lt;T&gt; List&lt;T&gt; makeList(T a) { List&lt;T&gt; list = new LinkedList&lt;T&gt;(); list.add(a); return list; } } </code></pre>