List<String>[] stringList = new List<?>[10];givesType mismatch: cannot convert from List<?>[] to List<String>[]If i use following statement
List<? extends Number> inLi = new ArrayList<Integer>();theninLi. inLi.add(5);givesThe method add(int, capture#1-of ? extends Number) in the type List<capture#1-of ? extends Number> is not applicable for the arguments (int)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
No. 1 doesn't work, because In short, in Java it is not possible to create a generic array like this:
But you can create a generic array like this:
For more information see this. Regarding 2, see this. |
|||||||||
|
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