vote up 1 vote down star

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding Array type. The best I could come up with is this:

Class arrayOfFooClass = java.lang.reflect.Array.newInstance(fooClass, 0).getClass();

Is there a way to do this without creating the new instance?

flag

2 Answers

vote up 2 vote down check
Class stringArrayClass = Class.forName("[Ljava.lang.String;");

You may replace java.lang.String by your object type.

Source: Jenkov Blog

link|flag
1  
He starts with the above and ends up with what I have. So I guess the newInstance is the cleanest way to do this. – antrix Nov 5 at 10:05
It actually works both ways, but you said you don't want to create a new instance. – Christian Strempfer Nov 5 at 10:27
True. I was actually looking for a cleaner solution. It is not that I don't want the new instance but that I'd rather not have one :-) – antrix Nov 6 at 1:40
vote up 0 vote down
Class stringArrayOfClass = String[].class;
link|flag
I don't know the type in advance; it is in a Class variable. So your method wouldn't work. – antrix Nov 6 at 1:41
Thanks for pointing that out – Michael Wiles Nov 8 at 7:59

Your Answer

Get an OpenID
or

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