Introducing generics to Java code without breaking the build - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T13:22:23Z http://stackoverflow.com/feeds/question/287401 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/287401/introducing-generics-to-java-code-without-breaking-the-build 1 Introducing generics to Java code without breaking the build Tobias Schulte 2008-11-13T16:24:27Z 2008-11-14T09:05:43Z <p>The following code does not compile:</p> <pre><code>public class GenericsTest { public static void main(String[] args) { MyList&lt;?&gt; list = new MyList&lt;Object&gt;(); Class&lt;?&gt; clazz = list.get(0); // Does not compile with reason // "Type mismatch: cannot convert from Object to Class" MyList list2 = new MyList(); Class clazz2 = list2.get(0); } static class MyList&lt;T&gt; extends ArrayList&lt;Class&lt;T&gt;&gt; { } } </code></pre> <p>I wanted to do this to introduce generics to old code without breaking the build.</p> <p>Is this a bug in both the compiler (both eclipse and javac) or am I missing something here? What other possibility exists to introduce generics to MyList?</p> <p><strong>EDIT</strong></p> <p>For clarification:</p> <p>I have the generic class</p> <pre><code>public class MyList extends ArrayList&lt;MyObject&gt; {} </code></pre> <p>with </p> <pre><code>public class MyObject {} </code></pre> <p>and code using MyList</p> <pre><code>MyList list = new MyList(); ... MyObject o = list.get(0); </code></pre> <p>Now during development I see I want to introduce generics to MyObject</p> <pre><code>public class MyObject&lt;T&gt; {} </code></pre> <p>and now I want to have this new generic thingy in MyList as well</p> <pre><code>public class MyList&lt;T&gt; extends ArrayList&lt;MyObject&lt;T&gt;&gt; {} </code></pre> <p>But that does break my build. Interestingly</p> <pre><code>public class MyList&lt;T&gt; extends ArrayList&lt;MyObject&lt;T&gt;&gt; { public MyObject&lt;T&gt; get(int i) { return super.get(i); } } </code></pre> <p>will allow old code </p> <pre><code>MyList list = new MyList(); ... MyObject o = list.get(0); </code></pre> <p>to compile. </p> <p>OK, seems that when I introduce this generic, I will have to live with having to change all calls to MyList to the generic form. I wanted the old code to just introduce a warning instead of an error.</p> http://stackoverflow.com/questions/287401/introducing-generics-to-java-code-without-breaking-the-build/287426#287426 -1 Answer by Bogdan for Introducing generics to Java code without breaking the build Bogdan 2008-11-13T16:33:32Z 2009-02-06T15:40:35Z <p>Have you tried:</p> <pre><code>Class clazz2 = list2.get(0).getClass(); </code></pre> <p>Read about it at: <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html#getClass()" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html#getClass()</a></p> http://stackoverflow.com/questions/287401/introducing-generics-to-java-code-without-breaking-the-build/287430#287430 11 Answer by matt b for Introducing generics to Java code without breaking the build matt b 2008-11-13T16:34:22Z 2008-11-13T16:34:22Z <p>I think you are not understanding quite how generics work.</p> <pre><code>MyList&lt;?&gt; list = new MyList&lt;Object&gt;(); Class&lt;String&gt; clazz= list.get(0); </code></pre> <p>This code snippet does not compile because you are telling the compiler that <code>list</code> is going to hold <code>Class&lt;Object&gt;</code> types - and then in the next line you are expecting it to return you a <code>Class&lt;String&gt;</code>. The generic system in Java is not capable of converting types used with generics based on inheritance like you might think it would.</p> <p>If you expect <code>list</code> to hold <code>Class&lt;String&gt;</code>, then you need to declare it as so - or, if you want it to be able to hold any types, then you cannot do the second line without a cast.</p> <pre><code>MyList&lt;String&gt; list = new MyList&lt;String&gt;(); Class&lt;String&gt; clazz = list.get(0); </code></pre> <p>or </p> <pre><code>MyList&lt;?&gt; list = new MyList&lt;Object&gt;(); //generates a warning about an unchecked cast Class&lt;String&gt; clazz = (Class&lt;String&gt;) list.get(0); </code></pre> <p><hr /></p> <p>The second code snippet does not work because when you use raw types, you still need to cast the <code>Object</code> returned by <code>get()</code> to the declared type you are using (which has always been the case).</p> <pre><code>MyList list2 = new MyList(); Class clazz2 = (Class) list2.get(0); </code></pre> http://stackoverflow.com/questions/287401/introducing-generics-to-java-code-without-breaking-the-build/287433#287433 1 Answer by Itay for Introducing generics to Java code without breaking the build Itay 2008-11-13T16:36:55Z 2008-11-13T16:36:55Z <p>I don't have a compiler on this machine, but this should work.</p> <pre><code>public class GenericsTest { public static void main(String[] args) { MyList&lt;Object&gt; list = new MyList&lt;Object&gt;(); Class&lt;?&gt; clazz= list.get(0); } static class MyList&lt;T&gt; extends ArrayList&lt;Class&lt;? extends T&gt;&gt; { } } </code></pre> http://stackoverflow.com/questions/287401/introducing-generics-to-java-code-without-breaking-the-build/288053#288053 1 Answer by laz for Introducing generics to Java code without breaking the build laz 2008-11-13T19:59:09Z 2008-11-13T19:59:09Z <p>In your example is MyList the old code you want to update to support generics? If so, what type of objects is my list supposed to contain?</p> <p>As was mentioned here elsewhere that compilation error is valid. It is due to the fact that a raw list is being accessed without the get being cast to Class. Hence the code is attempting to assign an Object to a reference of a Class. It is equivalent to this:</p> <pre><code>Object o = new Object(); Class c = o; </code></pre> <p>Which simply cannot compile. Also, to fully utilize generics you should favor Class&lt;?&gt; instead of Class.</p> http://stackoverflow.com/questions/287401/introducing-generics-to-java-code-without-breaking-the-build/289216#289216 0 Answer by Julien Grenier for Introducing generics to Java code without breaking the build Julien Grenier 2008-11-14T04:07:07Z 2008-11-14T04:07:07Z <p>In your example the second example doesn't work because you are not using generics so it means that the get() method will return a Object and you will need to cast it to a Class. When you are not specifying a type for your MyList :</p> <blockquote> <p>MyList list2 = new MyList();</p> </blockquote> <p>Then you are losing the Generics advantages and you need to cast the object when calling the get() method just like in the good ol' days.</p>