I wonder if ArrayList<SimpleObject> and ArrayList<ComplexObject> has different performance effect if we are concerning on memory usage and navigating speed (foreach, getAt())? Why?
Thanks,
|
I wonder if Thanks, |
|||||||||||
|
|
Your question isn't very clear on what you are looking for, so I've made a few assumptions about what you are seeking. If your concern is of the memory used by the list, then it will depend on the actual size of the objects being managed by the On the topic of runtime performance, this depends on the method being invoked. Methods like On the other hand, the performance of If your concern is of memory consumption during execution of the |
|||||
|
|
No, there is no performance difference. There are two very simple arguments to explain this:
|
|||
|
|
|
it does make no difference, because what we store in ArrayList() is just an object reference and not the memory. so no issue what kind of class you put in to it.. so there is no performance hindrance for large class and no enhanced performance for smaller classes.. |
|||
|
|