if we have to implementations of string split for j2me, one returns vector and the other returns array , in terms of performance on hand held devices which one is the best choice ?
|
Arrays would always perform better than Generally speaking you should always prefer |
|||||
|
|
If you don't need to alter the results, use array - it will have less overhead as well as less flexibility. |
|||||||
|
|
according to sun j2me performance tuning described in link text "Arrays are usually faster and leaner than collection classes" , so its clear that using arrays will be much better than any collection object |
|||
|
|