Java 1.5 Generics

I was reading the online tutorial of java generics and found this line:<code>List<String>[] lsa = new List<String>[10]; // not really allowed</code>Why is that not really allowed?
[238 byte] By [BigPhonya] at [2007-10-2 2:56:26]
# 1
Arrays were not refitted to accept generics. The reason is explained and illustrated by the section Arrays on this page: http://java.sun.com/docs/books/tutorial/extra/generics/fineprint.htmlTher is some discussion of potential future changes to the situation.
ChuckBinga at 2007-7-15 21:22:19 > top of Java-index,Administration Tools,Sun Connection...
# 2
Where might one find this discussion?Thanks!
eyegonea at 2007-7-15 21:22:19 > top of Java-index,Administration Tools,Sun Connection...
# 3
Deep in the bowels of the Sun Micrososystems cafetaria most likely :)
jwentinga at 2007-7-15 21:22:19 > top of Java-index,Administration Tools,Sun Connection...