I often use an ArrayList instead of a 'normal' array[].
I feel as if I am cheating (or being lazy) when I use an ArrayList, when is it okay to use an ArrayList over an array?
|
4
|
I often use an I feel as if I am cheating (or being lazy) when I use an ArrayList, when is it okay to use an ArrayList over an array?
|
||||
|
|
|
Arrays are strongly typed, and work well as parameters. If you know the length of your collection and it is fixed, you should use an array. ArrayLists are not strongly typed, every Insertion or Retrial will need a cast to get back to your original type. If you need a method to take a list of a specific type, ArrayLists fall short because you could pass in an ArrayList containing any type. ArrayLists use a dynamically expanding array internally, so there is also a hit to expand the size of the internal array when it hits its capacity. What you really want to use is a generic list like |
|||
|
|
Unless that part of the code is absolutely performance-critical, using ArrayList is perfectly fine. |
||
|
|
|
Better still, wherever you use |
||
|
|
|
|
Well for one, if you only intend to handle a specific type, you shouldn't use an ArrayList. For example, if you only expect an array of bytes, you should only accept an array of bytes. Only time I would think you may even think of using an ArrayList is instead of List. |
||
|
|
|
|
In addition to Bob's and Frederick's response, I would like to point it out that while arrays have covariance, generic lists do not. For example, an array of type If you need covariance, either use arrays, use LINQ's Cast() method or some other means to cast each item individually |
||||
|
|
|
The array's size is static, so if you do know the size at design time, use array. It is supposed to work faster, but I haven't tested it myself. If you need to change the count of objects frequently (adding or removing objects from the collection) use ArrayList or better the generic List from .NET 2. It's also easier to use, so if performance is not crucial, you can always use List. |
|||
|
|
|
|
One other thought here is mutation; an array ( I tend to use arrays either in internal method logic (perhaps as a local variable), as |
||
|
|
|
|
I'm answering this from a Java perspective, but it's the same basic issue. You should not feel guilty using higher abstractions. After all, you are using Using the higher collection abstraction has many advantages. You can add decorators to make the List read-only, make it fixed size, check items that enter or leave the collection or use views (see By the way, an There are a few things that make the use of collections clunky. One caveat is that the collections are usually based on objects, and the languages have a considerable gap between primitive and object types. The limited generics don't help much either. Still, I recommend the collections over arrays unless there's a good reason otherwise. For primitive values you may also consider using a primitive collection library, for example GNU Trove. Don't know if there's anything similar for C#, though. |
||
|
|
|
|
Fabulous Adventures In Coding has written a piece Arrays considered somewhat harmful. It's a really interesting read. |
||
|
|