Java Generics Syntax for arrays - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T15:28:11Zhttp://stackoverflow.com/feeds/question/185594http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/185594/java-generics-syntax-for-arrays11Java Generics Syntax for arraysdemi12008-10-09T01:27:33Z2008-10-17T13:15:46Z
<p>What data structure does the following declaration specify?</p>
<pre><code> List<ArrayList>[] 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<String> someList; // A List of String objects
List<ArrayList> someList; // A List of ArrayList objects
List<ArrayList>[] 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<ArrayList> specifies what the List must contain, but List<ArrayList>[] 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<ArrayList>[] 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#1856197Answer by Mark for Java Generics Syntax for arraysMark2008-10-09T01:40:58Z2008-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<List<ArrayList>> 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#1856275Answer by Draemon for Java Generics Syntax for arraysDraemon2008-10-09T01:44:42Z2008-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<ArrayList>[] someListArray = (List<ArrayList>[]) new List[5];
</code></pre>
http://stackoverflow.com/questions/185594/java-generics-syntax-for-arrays/185633#1856330Answer by Abarax for Java Generics Syntax for arraysAbarax2008-10-09T01:49:29Z2008-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<ArrayList>[] myArray = new ArrayList[2];
myArray[0] = new ArrayList<String>();
myArray[0].add("test 1");
myArray[1] = new ArrayList<String>();
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<ArrayList> myArray = new ArrayList<ArrayList>();
</code></pre>
http://stackoverflow.com/questions/185594/java-generics-syntax-for-arrays/185753#1857530Answer by anjanb for Java Generics Syntax for arraysanjanb2008-10-09T02:47:19Z2008-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<ArrayList<Integer>> {
MySpecialLinkedList() {
}
public void foo() {
}
public Object clone()
{
return super.clone();
}
}
List<ArrayList<Integer>> [] someListArray = new MySpecialLinkedList[10];
for (int i = 0; i < 10; ++i) {
someListArray[i] = new LinkedList<ArrayList<Integer>>();
for (int j = 0; j < 20; ++j) {
someListArray[i].add(new ArrayList<Integer>());
for (int k = 0; k < 30; ++k) {
someListArray[i].get(j).add(j);
}
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/185594/java-generics-syntax-for-arrays/185812#1858120Answer by demi1 for Java Generics Syntax for arraysdemi12008-10-09T03:16:23Z2008-10-10T21:00:40Z<p>After running some additional tests, I think I have my answer.</p>
<p>List<ArrayList>[] 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<ArrayList> (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<java.util.ArrayList>[]
someListArray = getArrayWhereEachElementIsALinkedListObject();
^
Generics2.java:16: warning: [unchecked] unchecked conversion
found : java.util.List[]
required: java.util.List<java.util.ArrayList>[]
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<ArrayList>[] 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#18726912Answer by Alex Miller for Java Generics Syntax for arraysAlex Miller2008-10-09T13:37:26Z2008-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<ArrayList> is just List. Generics are erased at runtime (google "wall of erasure" for more). </p>
<p>So this: </p>
<pre><code>List<ArrayList>[] 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>