vote up 4 vote down star
Object o = new Long[0]
System.out.println( o.getClass().isArray() )
System.out.println( o.getClass().getName() )
Class ofArray = ???

Running the first 3 lines emits;

true
[Ljava.lang.Long;

How do I get ??? to be type long? I could parse the string and do a Class.forname(), but thats grotty. What's the easy way?

flag

3 Answers

vote up 5 vote down check

Just Write

Class ofArray = o.getClass().getComponentType();
link|flag
That won't quite work. o is a Long array, not a Long, so I don't think o.getClass() will give what you want. – Herms Oct 17 '08 at 16:21
yeah you are right. I didn't understand the question. Now it should work. – sakana Oct 17 '08 at 16:27
vote up 3 vote down

@ddimitrov is the correct answer. Put into code it looks like this:

public <T> Class<T> testArray(T[] array) {
    return array.getClass().getComponentType();
}

Even more generally, we can test first to see if the type represents an array, and then get its component:

Object maybeArray = ...
Class<?> clazz = maybeArray.getClass();
if (clazz.isArray()) {
    System.out.printf("Array of type %s", clazz.getComponentType());
} else {
    System.out.println("Not an array");
}

A specific example would be applying this method to an array for which the component type is already known:

String[] arr = {"Daniel", "Chris", "Joseph"};
arr.getClass().getComponentType();              // => java.lang.String

Pretty straightforward!

link|flag

Your Answer

Get an OpenID
or

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