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

Possible Duplicate:
Cannot create an array of LinkedLists in Java…?

I want to call this method:

executeBatch(Map<String,Object>[] batch) 

But for the life of me I can't figure out how to create an array of Map<String,Object>[]

I get the error "Can create a generic array of HashMap" when I try HashMap<String,Object>[] params = new HashMap<String,Object>[20000];

I also failed at attempting to cast an ArrayList.toArray() to a HashMap<String,Object>[]

share|improve this question

marked as duplicate by Daniel Rikowski, Lukas Eder, Bozho, Brian Roach, Adeel Ansari Apr 7 '11 at 7:35

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

up vote 4 down vote accepted

You really cant. You have to do it like this:

@SuppressWarnings("unchecked")
HashMap<String, Object>[] map = new HashMap[20000];
share|improve this answer

Or with a more barbaric solution you can compile adding:

-Xlint:unchecked
share|improve this answer
1  
+1 for correctly using "barbaric" in a sentence :-) – Lukas Eder Apr 7 '11 at 7:28

have a look at the former question Cannot create an array of LinkedLists in Java...?

share|improve this answer
I would do an analogy of this... public interface IntegerNodeList extends List<IntegerNode> {} – uthomas Apr 7 '11 at 7:35

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