Java Generics - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T01:48:38Z http://stackoverflow.com/feeds/question/490091 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/490091/java-generics 4 Java Generics ForYourOwnGood 2009-01-29T00:56:33Z 2009-11-09T16:51:25Z <p>Can someone explained, as detailed as possible, the differences between the following types?</p> <pre><code>List List&lt;Object&gt; List&lt;?&gt; </code></pre> <p>Can I get an answer, not a link?</p> <p>Let me make this more specific. </p> <p>When would I want to use</p> <pre><code>public void CanYouGiveMeAnAnswer( List l ){} </code></pre> <p>?</p> <p>When would I want to use</p> <pre><code>public void CanYouGiveMeAnAnswer( List&lt;Object&gt; l ){} </code></pre> <p>?</p> <p>When would I want to use</p> <pre><code>public void CanYouGiveMeAnAnswer( List&lt;?&gt; l ){} </code></pre> <p>?</p> http://stackoverflow.com/questions/490091/java-generics/490103#490103 7 Answer by Rob for Java Generics Rob 2009-01-29T01:02:09Z 2009-11-09T16:51:25Z <p>I refer you to the excellent <a href="http://java.sun.com/docs/books/tutorial/java/generics/index.html" rel="nofollow">Java Generics tutorial</a>, and the <a href="http://java.sun.com/docs/books/tutorial/extra/generics/index.html" rel="nofollow">"advanced" Generics tutorial</a>, both available from Sun Microsystems. Another great resource is the <a href="http://oreilly.com/catalog/9780596527754" rel="nofollow">Java Generics and Collections</a> book.</p> http://stackoverflow.com/questions/490091/java-generics/490114#490114 0 Answer by Tim for Java Generics Tim 2009-01-29T01:05:12Z 2009-01-29T01:17:38Z <p>To complement the tutorials mentioned by Rob, here's a wikibook explaining the topic:<br> <a href="http://en.wikibooks.org/wiki/Java_Programming/Generics" rel="nofollow">http://en.wikibooks.org/wiki/Java_Programming/Generics</a></p> <p><hr /></p> <p>Edit:</p> <ol> <li><p>No restrictions on type of items in list</p></li> <li><p>Items in list must extend Object</p></li> <li><p>Wildcard used by itself, so it matches anything</p></li> </ol> <p>Would it be naive of me to conclude at this point that there's hardly any/no difference at all?</p> http://stackoverflow.com/questions/490091/java-generics/490137#490137 1 Answer by John Gardner for Java Generics John Gardner 2009-01-29T01:13:29Z 2009-01-29T01:13:29Z <p>Simplest explanation which is not "RTFM":</p> <pre><code>List </code></pre> <p>Will generate lots of compiler warnings, but is mostly equivalent to:</p> <pre><code>List&lt;Object&gt; </code></pre> <p>While:</p> <pre><code>List&lt;?&gt; </code></pre> <p>basically means its something generic, but you don't know what the generic type is. Its great for getting rid of compiler warnings when you cant modify the return types of other things that just returned List. Its much more useful in the form:</p> <pre><code>List&lt;? extends SomeOtherThing&gt; </code></pre> http://stackoverflow.com/questions/490091/java-generics/490140#490140 2 Answer by Eddie for Java Generics Eddie 2009-01-29T01:14:57Z 2009-01-29T01:14:57Z <p>The shortest possible explanation is: The second item is a list that can hold any type, and you can add objects to it:</p> <pre><code>List&lt;Object&gt; </code></pre> <p>The first item you list is treated as essentially equivalent to this, except you will get compiler warnings because it is a "raw type".</p> <pre><code>List </code></pre> <p>The third is a list that can hold any type, but you cannot add anything to it:</p> <pre><code>List&lt;?&gt; </code></pre> <p>Basically, you use the second form (<code>List&lt;Object&gt;</code>) when you truly have a list that can contain any object and you want to be able to add elements to the list. You use the third form (<code>List&lt;?&gt;</code>)when you receive the list as a method return value and you will iterate over the list but never add anything to it Never use the first form (<code>List</code>) in new code compiling under Java 5 or later.</p> http://stackoverflow.com/questions/490091/java-generics/490178#490178 1 Answer by Fabian Steeg for Java Generics Fabian Steeg 2009-01-29T01:29:39Z 2009-01-29T01:29:39Z <p>I'd put it this way: While <code>List</code> and <code>List&lt;Object&gt;</code> can contain any type of objects, <code>List&lt;?&gt;</code> contains elements of an unknown type, but once that type is captured, it can only contain elements of that type. Which is why it is the only type safe variant of those three, and therefore generally preferable.</p> http://stackoverflow.com/questions/490091/java-generics/490181#490181 3 Answer by Oscar Reyes for Java Generics Oscar Reyes 2009-01-29T01:30:59Z 2009-01-29T01:39:04Z <p>In my own simple terms:</p> <blockquote> <p>List</p> </blockquote> <p>Would declare an ordinary collection, can hold any type, and will always return Object.</p> <blockquote> <p>List&lt;Object&gt;</p> </blockquote> <p>Will create a list that can hold any type of object, but can only get assigned a another <em>List&lt;Object&gt;</em> </p> <p>For instance this doesn't work;</p> <pre><code>List&lt;Object&gt; l = new ArrayList&lt;String&gt;(); </code></pre> <p>Of course you can add anything but only can pull Object.</p> <pre><code>List&lt;Object&gt; l = new ArrayList&lt;Object&gt;(); l.add( new Employee() ); l.add( new String() ); Object o = l.get( 0 ); Object o2 = l.get( 1 ); </code></pre> <p>Finally </p> <blockquote> <p>List&lt;?></p> </blockquote> <p>Will let you assign any type, including </p> <pre><code>List &lt;?&gt; l = new ArrayList(); List &lt;?&gt; l2 = new ArrayList&lt;String&gt;(); </code></pre> <p>This would be called collection of <em>unknown</em> and since the common denominator of <em>unknown</em> is Object you will be able to fetch Objects ( a coincidence ) </p> <p>The importance of <em>unknown</em> comes when its used with subclassing:</p> <pre><code>List&lt;? extends Collection&gt; l = new ArrayList&lt;TreeSet&gt;(); // compiles List&lt;? extends Collection&gt; l = new ArrayList&lt;String&gt;(); // doesn't, // because String is not part of *Collection* inheritance tree. </code></pre> <p>I hope using Collection as the type doesn't create confusion, that was the only tree that came to my mind.</p> <p>The difference here, is that l is a collection of <em>unknow</em> that belongs to the <em>Collection</em> hierarchy.</p> http://stackoverflow.com/questions/490091/java-generics/490211#490211 0 Answer by Oscar Reyes for Java Generics Oscar Reyes 2009-01-29T01:45:51Z 2009-01-29T01:45:51Z <blockquote> <p><em>When would I want to use</em></p> </blockquote> <pre><code>public void CanYouGiveMeAnAnswer( List l ){} </code></pre> <p>When you cant to do all the casting your self.</p> <blockquote> <p><em>When would I want to use</em></p> </blockquote> <pre><code>public void CanYouGiveMeAnAnswer( List l&lt;Object&gt; ){} </code></pre> <p>When you want to restrict the type of the List. For instance, this would be an invalid argument.</p> <pre><code> new ArrayList&lt;String&gt;(); </code></pre> <blockquote> <p><em>When would I want to use</em></p> </blockquote> <pre><code>public void CanYouGiveMeAnAnswer( List l&lt;?&gt; ){} </code></pre> <p>Mostly never.</p> http://stackoverflow.com/questions/490091/java-generics/490225#490225 3 Answer by jjohn for Java Generics jjohn 2009-01-29T01:52:32Z 2009-01-29T01:52:32Z <p>As the other posts have noted, you're asking about a java feature called generics. In C++, this is called templates. The java beasties are far tamer to deal with.</p> <p>Let me answer your questions functionally (if that's not a naughty word for OO discussions).</p> <p>Before generics, you had good old concrete classes like Vector. </p> <pre><code>Vector V = new Vector(); </code></pre> <p>Vectors hold any old object you give them. </p> <pre><code>V.add("This is an element"); V.add(new Interger(2)); v.add(new Hashtable()); </code></pre> <p>However, they do this by casting everything you give it into an Object (the root of all java classes). That's OK until you attempt to retrieve the values stored in your Vector. When you do, you need to cast the value back into the original class (if you want to do anything meaningful with it).</p> <pre><code>String s = (String) v.get(0); Integer i = (Integer) v.get(1); Hashtable h = (Hashtable) v.get(2); </code></pre> <p>Casting gets pretty old fast. More than that, the compiler whines at you about unchecked casts. For a vivid example of this, use the XML-RPC library from Apache (version 2 anyway). The most important problem with this is that consumers of your Vector have to know the exact class of its values at <em>compile time</em> in order to cast correctly. In cases where the producer of the Vector and the consumer are completely isolated from each other, this can be a fatal issue. </p> <p>Enter generics. Generics attempt to create strongly typed classes to do generic operations. </p> <pre><code>ArrayList&lt;String&gt; aList = new ArrayList&lt;String&gt;(); aList.add("One); System.out.println("Got one: " + aList.get(0)); // no cast needed </code></pre> <p>Now, if you take a look at the infamous gang of four's /Design Patterns/ book, you'll notice that there is some wisdom in divorcing variables from their implementing class. It's better to think of contracts rather than implementation. So, you might say that all List objects do the same things: add(), get(), size(), etc. However, there are many implementations of List operations that may choose to obey the contract in various ways (e.g. ArrayList). However, the type of data these object deal with is left as a runtime consideration to you, the user of the generic class. Put it all together and you'll see the following line of code very frequently:</p> <pre><code>List&lt;String&gt; L = new ArrayList&lt;String&gt;(); </code></pre> <p>You should read that as "L is a kind of List that deals with String objects". When you start dealing with Factory classes, it is critical to deal with contracts rather than specific implementations. Factories produce objects of various types at runtime. </p> <p>Using generics is pretty easy (most of the time). However, one awful day you may decide you want to implement a generic class. Perhaps you've thought of a great new List implementation. When you define that class, you use as a placeholder for the kind of object that will be manipulated by the methods. If you're confused, use the generic classes for List until you're comfortable. Then, you can dive into the implementation with a bit more confidence. Or you can look at the source code for the various List classes that ship with the JRE. Open source is great that way.</p> <p>Cheers.</p>