Consider the Array.newInstance static method as a way of creating a generic type array in Java. What I'm failing to see how to do is create a generic array from a null generic type argument:
/**
* Creates and fills a generic array with the given item
*/
public static <T> T[] create(T item, int length)
{
T[] result = (T[]) Array.newInstance(item.getClass(), length);
for(int i = 0; i < length; i++)
result[i] = item;
return result;
}
The above works when I call e.g. create("abc", 10); I'm getting a String[] of length 10 with "abc" in all positions of the array. But how could I make a null string argument return a String array of length 10 and null in all positions?
e.g.
String nullStr = null;
String[] array = create(nullStr, 10); // boom! NullPointerException
Is there perhaps a way to get the class of "item" without using one of its members (as it's null)?
I know I can just new up an array String[] array = new String[10], but that's not the point.
Thanks
item(but this information isn't if it's null, naturally :-). This could be done with taking a Class instead or, perhaps, justcreate(SomeDefault, 10), e.g.create("", 10). FYI: C# (not Java) has reified types and supportstypeof(T), among other things. Oh, check out the link to reified types which also talks about type erasure :-) – user166390 Jan 21 '11 at 23:12