vote up 1 vote down star

What is the cost of using Arrays.asList to convert static object arrays? Assuming that the object array has N items is it just an O(N) algorithm, where all of the items are copied by reference or is it merely a facade where the original array is put behind a List facade?

flag

2  
You could have take a look into sources :) – vava Oct 12 at 5:04
You can't always look in the code... sometime the code is redirected and hidden from view. However, I'm not using OpenJava. – steven Oct 12 at 5:19
3  
Well, Java library sources as opposed to .Net one are distributed along with jdk. There's src.zip right under "C:\Program Files\Java\jdk1.6.0_11" – vava Oct 12 at 5:30

1 Answer

vote up 10 vote down check

It is cheap, O(1). As you suspect the list is merely a wrapper around the array. This is confirmed by the Java API documentation:

Returns a fixed-size list backed by the specified array. (Changes to the returned list "write through" to the array.)

link|flag
When going the other direction (Collection.toArray) the array is not "write-through". Changes to the array won't affect the list the array came from. – Sam Barnum Oct 12 at 14:46

Your Answer

Get an OpenID
or

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