[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: JAVA API : getElementType()



Visweswara Rao Kottapalli wrote:

hello,

getElementType() in the class Array takes a long time to return the type
of the elements in the array. I found this to be unusual. Its taking
around 2.5 seconds to return a datatype.

Am writing a small piece of code for better understanding of what am
talking.

Variable v;
String elementType = v.read().getElementType().toString();

The getElementType() method is taking almost 2.5 seconds to return the
dataType of the elements in the array.

Thanks
Visweswara Rao Kottapalli

its the v.read() that can potentially take that long. you are reading the entire array into memory.

use

 v.getElementType();

it will return the same value instantaneously.