How to find the capacity of an ArrayList?
|
feedback
|
|
I'm curious, what do you need it for? You should know that the capacity is not (as it may sound) an upper limit of how much you can put into the ArrayList. It's a value representing how much data you can put into the list, without forcing it to reallocate it internal array. Basically, the notion of capacity is only there in order for you to tweak the performance slightly. Anyway, perhaps you already know that, so here comes the actual answer. The interface provided by API for ArrayList simply doesn't support such use case. There are many reasons for this. One reason is that you shouldn't care about this. The ArrayList is to be thought of as an unbounded array which abstracts away from details such as capacity. The closest you can get to controlling the capacity is through the constructor For fun however, I managed to solve it through an ugly reflection-hack (don't use this):
Output:
| |||||||||||||||
feedback
|
|
No you cannot ! Java ArrayList do not provide a way to access its current capacity. You can only construct an ArrayList specifying an initial capacity using constructor ArrayList(int initialCapacity) or increase the capacity by calling ensureCapacity(). | |||||||||||||||||
feedback
|
|
The That said, these methods may be of interest to you:
| |||
|
feedback
|
|
You don't need to worry about the capacity, that is an internal implementation detail. If the internal array fills, then it will expand. You can find out how many elements are currently in your ArrayList with the | |||
|
feedback
|
|
From the specification: "The capacity is the size of the array used to store the elements in the list. It is always at least as large as the list size. As elements are added to an ArrayList, its capacity grows automatically. The details of the growth policy are not specified beyond the fact that adding an element has constant amortized time cost." So there's no way to tell what the current capacity is, nor how it grows. | |||
|
feedback
|
|
I'm going to buck the trend here...the user has a question albeit with no context. Without context, knowing the capacity is unnecessary as the backing array will grow to accommodate... You can do the following to know for certain what the capacity is with your ArrayList. The side effect is the backing array will be trimmed to the exact number of elements in the array:
Enjoy! | |||
|
feedback
|
|
Do you need this at runtime or is it ok to get while performing testing? If its testing you can usually see the capacity using your favourite IDE debugger. I don't have the exact number, but 1.7 is usually the capacity growth size. So if you create an arraylist with 10 items, java will make it size 17. | |||
|
feedback
|
|
The API doesn't provide it. Internally, the capacity is multiplied by a factor whenever add(..) is called while in full capacity. However, the Java specification doesn't say anything about this constant factor... Sun's implementation uses a factor of 1.5, so you have an upper bound of 1.5*size() for the capacity. Remember that you can use trimToSize() to "compact" the list and make the capacity equal to size(). | |||
|
feedback
|