Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Dupe: http://stackoverflow.com/questions/185594/java-generics-syntax-for-arrays

I want to create an array that will hold linked lists of Integer type..

import java.util.LinkedList;

public class Test {

    public static void main(String [] args){

    	LinkedList<Integer> [] buckets = new LinkedList<Integer>[10];		

    }
}

I get an error saying: Cannot create a generic array of LinkedList

Why is this? Can it be solved?

share|improve this question

marked as duplicate by Yuval Adam, Daniel Rikowski, Jason Coco, Tom Hawtin - tackline, starblue May 2 '09 at 15:55

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

Generics and ye olde arrays don't get on well (this subject has been done to death meny times, here and elsewhere). Use an (array) list of lists.

share|improve this answer
+1 for 'ye olde' – bedwyr May 2 '09 at 14:52

You could wrap it with another list type, e.g:

ArrayList<LinkedList<Integer>> buckets = new ArrayList<LinkedList<Integer>>();
share|improve this answer

try

List<Integer> [] buckets = new LinkedList[10];

I don't know why Java doesn't allow generics on arrays given you can just drop the generic on the right (though it will give an unchecked warning this way)

share|improve this answer
its because arrays are reified (runtine behavior) and generics uses type erasure at compiletime – Schildmeijer May 2 '09 at 17:35
I don't see why the compile cannot check the generics types match, and otherwise treat it as if it wasn't there. – Peter Lawrey May 3 '09 at 9:39

Not the answer you're looking for? Browse other questions tagged or ask your own question.