Java Generics Syntax for arrays - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T15:28:11Z http://stackoverflow.com/feeds/question/185594 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/185594/java-generics-syntax-for-arrays 11 Java Generics Syntax for arrays demi1 2008-10-09T01:27:33Z 2008-10-17T13:15:46Z <p>What data structure does the following declaration specify?</p> <pre><code> List&lt;ArrayList&gt;[] myArray; </code></pre> <p>I think it should declare an array where each element is a List (e.g., a LinkedList or an ArrayList) and require that each List contain ArrayList objects.</p> <p>My reasoning:</p> <pre><code> List&lt;String&gt; someList; // A List of String objects List&lt;ArrayList&gt; someList; // A List of ArrayList objects List&lt;ArrayList&gt;[] someListArray; // An array of List of ArrayList objects </code></pre> <p>After running some tests, I determined that it accepts an array where each element is an LinkedList object and does not specify what the LinkedList objects contain.</p> <p>So List&lt;ArrayList&gt; specifies what the List must contain, but List&lt;ArrayList&gt;[] specifies how the List must be implemented.</p> <p>Am I missing something?</p> <p>Here are my tests.</p> <pre> import java.util.ArrayList; import java.util.List; import java.util.LinkedList; public class Generics1 { public static void main(String[] args) { List&lt;ArrayList&gt;[] someListArray; someListArray = getArrayWhereEachElementIsAnArrayListObject(); // Why does this satisfy the declaration? //someListArray[0] => ArrayList object holding Strings someListArray= getArrayWhereEachElementIsAListOfArrayListObjects(); //someListArray[0] => ArrayList object holding ArrayList objects } public static List[] getArrayWhereEachElementIsAnArrayListObject() { List[] arrayOfLists = new ArrayList[2]; arrayOfLists[0] = getStringList(); arrayOfLists[1] = getIntegerList(); return arrayOfLists; } public static List[] getArrayWhereEachElementIsAListOfArrayListObjects() { List list1 = new ArrayList(); list1.add(getArrayList()); List list2 = new ArrayList(); list2.add(getArrayList()); List[] arrayOfListsOfArrayLists = new ArrayList[2]; arrayOfListsOfArrayLists[0] = list1; arrayOfListsOfArrayLists[1] = list2; return arrayOfListsOfArrayLists; } public static List getStringList() { List stringList= new ArrayList(); stringList.add("one"); stringList.add("two"); return stringList; } public static List getIntegerList() { List intList= new ArrayList(); intList.add(new Integer(1)); intList.add(new Integer(2)); return intList; } public static ArrayList getArrayList() { ArrayList arrayList = new ArrayList() ; return arrayList; } } </pre> http://stackoverflow.com/questions/185594/java-generics-syntax-for-arrays/185619#185619 7 Answer by Mark for Java Generics Syntax for arrays Mark 2008-10-09T01:40:58Z 2008-10-09T01:40:58Z <p>Mr Josh Bloch says: </p> <blockquote> <p>"Prefer lists to array because arrays are covariant and generics are invariant'</p> </blockquote> <p>You could perhaps do:</p> <pre><code>List&lt;List&lt;ArrayList&gt;&gt; someListArray; </code></pre> <p>This may give some performance hit (not even noticable i bet) but you will get better type safety at compile time.</p> <p>but I think the question should be more around "why" you need this?</p> http://stackoverflow.com/questions/185594/java-generics-syntax-for-arrays/185627#185627 5 Answer by Draemon for Java Generics Syntax for arrays Draemon 2008-10-09T01:44:42Z 2008-10-09T01:44:42Z <p>List[] someListArray;</p> <p>gives you an:</p> <pre><code>array of ( List of ArrayList ) </code></pre> <p>But due to limitations in Java generics (bug <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6229728" rel="nofollow">6229728</a>) you can only actually create:</p> <pre><code>array of List </code></pre> <p>and cast it:</p> <pre><code>List&lt;ArrayList&gt;[] someListArray = (List&lt;ArrayList&gt;[]) new List[5]; </code></pre> http://stackoverflow.com/questions/185594/java-generics-syntax-for-arrays/185633#185633 0 Answer by Abarax for Java Generics Syntax for arrays Abarax 2008-10-09T01:49:29Z 2008-10-09T03:55:29Z <p>You are correct in saying: </p> <blockquote> <p>After running some tests, I determined the declaration means an array where each element is an ArrayList object.</p> </blockquote> <p>Executing this code</p> <pre><code>List&lt;ArrayList&gt;[] myArray = new ArrayList[2]; myArray[0] = new ArrayList&lt;String&gt;(); myArray[0].add("test 1"); myArray[1] = new ArrayList&lt;String&gt;(); myArray[1].add("test 2"); print myArray; </code></pre> <p>Produces this result:</p> <pre><code>{["test 1"], ["test 2"]} </code></pre> <p>It seems to me there is no reason not to do this instead:</p> <pre><code>List&lt;ArrayList&gt; myArray = new ArrayList&lt;ArrayList&gt;(); </code></pre> http://stackoverflow.com/questions/185594/java-generics-syntax-for-arrays/185753#185753 0 Answer by anjanb for Java Generics Syntax for arrays anjanb 2008-10-09T02:47:19Z 2008-10-09T02:47:19Z <p>List is a List capable of holding ArrayList objects List [] is an array of such Lists</p> <p>So, what you said is that An Array of (List of ArrayList object) is CORRECT.</p> <p>Can you share what your tests were. My own tests are different</p> <pre><code>import java.util.*; public class TestList { public static void main(String ... args) { class MySpecialLinkedList extends LinkedList&lt;ArrayList&lt;Integer&gt;&gt; { MySpecialLinkedList() { } public void foo() { } public Object clone() { return super.clone(); } } List&lt;ArrayList&lt;Integer&gt;&gt; [] someListArray = new MySpecialLinkedList[10]; for (int i = 0; i &lt; 10; ++i) { someListArray[i] = new LinkedList&lt;ArrayList&lt;Integer&gt;&gt;(); for (int j = 0; j &lt; 20; ++j) { someListArray[i].add(new ArrayList&lt;Integer&gt;()); for (int k = 0; k &lt; 30; ++k) { someListArray[i].get(j).add(j); } } } } } </code></pre> http://stackoverflow.com/questions/185594/java-generics-syntax-for-arrays/185812#185812 0 Answer by demi1 for Java Generics Syntax for arrays demi1 2008-10-09T03:16:23Z 2008-10-10T21:00:40Z <p>After running some additional tests, I think I have my answer.</p> <p>List&lt;ArrayList&gt;[] does indeed specify an array where each element is a List of ArrayList objects.</p> <p>Compiling the code as shown below revealed why my first test allowed me to use an array where each element is a List of anything. Using return types of List[] and List in the methods that populate the arrays did not provide the compiler enough information to prohibit the assignments. But the compiler did issue warnings about the ambiguity.</p> <p>From the compiler's point of view, a method returning a List[] might be returning a List&lt;ArrayList&gt; (which satisfies the declaration) or it might not. Similarly, a method returning a List might or might not return an ArrayList.</p> <p>Here was the compiler output:</p> <p>javac Generics2.java -Xlint:unchecked</p> <pre> Generics2.java:12: warning: [unchecked] unchecked conversion found : java.util.List[] required: java.util.List&lt;java.util.ArrayList&gt;[] someListArray = getArrayWhereEachElementIsALinkedListObject(); ^ Generics2.java:16: warning: [unchecked] unchecked conversion found : java.util.List[] required: java.util.List&lt;java.util.ArrayList&gt;[] someListArray= getArrayWhereEachElementIsAListOfLinkedListObjects(); </pre> <p>Here are my tests.</p> <pre> import java.util.ArrayList; import java.util.List; import java.util.LinkedList; public class Generics2 { public static void main(String[] args) { List&lt;ArrayList&gt;[] someListArray; someListArray = getArrayWhereEachElementIsALinkedListObject(); // Why does this satisfy the declaration? //someListArray[0] => LinkedList object holding Strings someListArray= getArrayWhereEachElementIsAListOfLinkedListObjects(); //someListArray[0] => LinkedList object holding LinkedList objects } public static List[] getArrayWhereEachElementIsALinkedListObject() { List[] arrayOfLists = new LinkedList[2]; arrayOfLists[0] = getStringLinkedListAsList(); arrayOfLists[1] = getIntegerLinkedListAsList(); return arrayOfLists; } public static List[] getArrayWhereEachElementIsAListOfLinkedListObjects() { List list1 = new LinkedList(); list1.add(new LinkedList()); List list2 = new LinkedList(); list2.add(new LinkedList()); List[] arrayOfListsOfLinkedLists = new LinkedList[2]; arrayOfListsOfLinkedLists[0] = list1; arrayOfListsOfLinkedLists[1] = list2; return arrayOfListsOfLinkedLists; } public static List getStringLinkedListAsList() { List stringList= new LinkedList(); stringList.add("one"); stringList.add("two"); return stringList; } public static List getIntegerLinkedListAsList() { List intList= new LinkedList(); intList.add(new Integer(1)); intList.add(new Integer(2)); return intList; } } </pre> http://stackoverflow.com/questions/185594/java-generics-syntax-for-arrays/187269#187269 12 Answer by Alex Miller for Java Generics Syntax for arrays Alex Miller 2008-10-09T13:37:26Z 2008-10-09T13:37:26Z <p>The answer is that arrays can only hold reified types. And generified classes are not reified. That is, the runtime "type" of the List&lt;ArrayList&gt; is just List. Generics are erased at runtime (google "wall of erasure" for more). </p> <p>So this: </p> <pre><code>List&lt;ArrayList&gt;[] myArray </code></pre> <p>really means: </p> <pre><code>List[] myArray </code></pre> <p>There is no type-safe way to declare what you're trying to declare. Generally, I'd recommend you use a List instead of an array in this case. Some people have gone so far as to suggest that arrays should be treated as deprecated types now that we have generics. I can't say I'm willing to go that far but you should consider whether a collection is a better alternative whenever you're drawn to an array.</p> <p>The book <a href="http://rads.stackoverflow.com/amzn/click/0596527756" rel="nofollow">Java Generics and Collections</a> by Naftalin and Wadler is an excellent reference for questions you might have about generics. Or, of course, the <a href="http://www.angelikalanger.com/GenericsFAQ/JavaGenericsFAQ.html" rel="nofollow">Generics FAQ</a> is your canonical online reference.</p>