Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
  1. List<String>[] stringList = new List<?>[10]; gives Type mismatch: cannot convert from List<?>[] to List<String>[]

  2. If i use following statement List<? extends Number> inLi = new ArrayList<Integer>(); then inLi. inLi.add(5); gives The method add(int, capture#1-of ? extends Number) in the type List<capture#1-of ? extends Number> is not applicable for the arguments (int)

share|improve this question
1. List<List<String>> stringsList = new ArrayList<>(); 2. Lint<Integer> ints = new ArrayList<>();. Or prior to Java SE 7: 1. List<List<String>> stringsList = new ArrayList<List<String>>(); 2. Lint<Integer> ints = new ArrayList<Integer>();. – Tom Hawtin - tackline Aug 14 '11 at 12:04

1 Answer

up vote 5 down vote accepted

No. 1 doesn't work, because List<String>[] means an array of String lists, while List<?>[] means an array of lists of anything. In a List<String>[] array, you can not have a List<Integer> element, but List<?>[] could have an element that's a List<Integer>, hence the type mismatch error.

In short, in Java it is not possible to create a generic array like this:

Foo<T>[] fooArray = new Foo<T>[];

But you can create a generic array like this:

@SuppressWarnings("unchecked") // optional but informs the compiler 
                               // not to generate warning message
List<String>[] stringList = new ArrayList[10];

For more information see this.

Regarding 2, see this.

share|improve this answer
Could you plz tell alternate solution/statement for problem 1. – articlestack Aug 14 '11 at 17:54
Please see the updated post. – Behrang Saeedzadeh Aug 15 '11 at 1:01
I am using List<String>[] stringList = (List<String>[]) new List<?>[10]; for 1st problem. Whether it is good? – articlestack Aug 15 '11 at 13:13
That looks good and legit (I updated my previous comment). – Behrang Saeedzadeh Aug 16 '11 at 16:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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