Introducing generics to Java code without breaking the build - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T13:22:23Zhttp://stackoverflow.com/feeds/question/287401http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/287401/introducing-generics-to-java-code-without-breaking-the-build1Introducing generics to Java code without breaking the buildTobias Schulte2008-11-13T16:24:27Z2008-11-14T09:05:43Z
<p>The following code does not compile:</p>
<pre><code>public class GenericsTest {
public static void main(String[] args) {
MyList<?> list = new MyList<Object>();
Class<?> 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<T> extends ArrayList<Class<T>> {
}
}
</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<MyObject> {}
</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<T> {}
</code></pre>
<p>and now I want to have this new generic thingy in MyList as well</p>
<pre><code>public class MyList<T> extends ArrayList<MyObject<T>> {}
</code></pre>
<p>But that does break my build. Interestingly</p>
<pre><code>public class MyList<T> extends ArrayList<MyObject<T>> {
public MyObject<T> 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-1Answer by Bogdan for Introducing generics to Java code without breaking the buildBogdan2008-11-13T16:33:32Z2009-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#28743011Answer by matt b for Introducing generics to Java code without breaking the buildmatt b2008-11-13T16:34:22Z2008-11-13T16:34:22Z<p>I think you are not understanding quite how generics work.</p>
<pre><code>MyList<?> list = new MyList<Object>();
Class<String> 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<Object></code> types - and then in the next line you are expecting it to return you a <code>Class<String></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<String></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<String> list = new MyList<String>();
Class<String> clazz = list.get(0);
</code></pre>
<p>or </p>
<pre><code>MyList<?> list = new MyList<Object>();
//generates a warning about an unchecked cast
Class<String> clazz = (Class<String>) 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#2874331Answer by Itay for Introducing generics to Java code without breaking the buildItay2008-11-13T16:36:55Z2008-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<Object> list = new MyList<Object>();
Class<?> clazz= list.get(0);
}
static class MyList<T> extends ArrayList<Class<? extends T>> {
}
}
</code></pre>
http://stackoverflow.com/questions/287401/introducing-generics-to-java-code-without-breaking-the-build/288053#2880531Answer by laz for Introducing generics to Java code without breaking the buildlaz2008-11-13T19:59:09Z2008-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<?> instead of Class.</p>
http://stackoverflow.com/questions/287401/introducing-generics-to-java-code-without-breaking-the-build/289216#2892160Answer by Julien Grenier for Introducing generics to Java code without breaking the buildJulien Grenier2008-11-14T04:07:07Z2008-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>