I'm trying to make an array of vectors like this:

Vector<String>[] wordList = new Vector[29];
for (int i = 0; i < wordList.length; i++) {
  wordList[i] = new Vector<String>(100);
}

But Java warns me that "new Vector[29]" violates type safety. How do I get rid of the the warning?

Update: I've tried:

        wordList = new Vector<String>[29];

Of course, but this generates the error: Cannot create a generic array of Vector

link|improve this question

78% accept rate
feedback

3 Answers

up vote 5 down vote accepted
Vector<String>[] wordList = (Vector<String>[])new Vector[29];
link|improve this answer
warning: unchecked cast from Vector[] to Vector<String>[] – Jeremy Jul 19 '11 at 19:31
@Jeremy, Compare your updated code to the code provided in this answer..it doesn't match. DOH! – Moonbeam Jul 19 '11 at 19:32
1  
you can cheat by @SuppressWarnings("unchecked") :) – Foo Bah Jul 19 '11 at 19:33
The warning I'm talking about is using your updated code. The code I have is an error. – Jeremy Jul 19 '11 at 19:33
I'm starting to think that's the only way to do it... it feels wrong, though. Thanks! – Jeremy Jul 19 '11 at 19:36
show 1 more comment
feedback

Consider using a List of List<String> instead of an array of Vectors, like so:

List<List<String>> wordList = new Vector<List<String>>();

This doesn't generate any warnings.

link|improve this answer
feedback

You can't make that work as you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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