java.lang.Object | |||
↳ | java.util.AbstractCollection<E> | ||
↳ | java.util.AbstractList<E> | ||
↳ | java.util.ArrayList<E> |
![]() |
ArrayList is an implementation of List
, backed by an array.
All optional operations including adding, removing, and replacing elements are supported.
All elements are permitted, including null.
This class is a good choice as your default List
implementation.
Vector
synchronizes all operations, but not necessarily in a way that's
meaningful to your application: synchronizing each call to get
, for example, is not
equivalent to synchronizing the list and iterating over it (which is probably what you intended).
CopyOnWriteArrayList
is intended for the special case of very high
concurrency, frequent traversals, and very rare mutations.
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Constructs a new instance of
ArrayList with the specified
initial capacity.
| |||||||||||
Constructs a new
ArrayList instance with zero initial capacity.
| |||||||||||
Constructs a new instance of
ArrayList containing the elements of
the specified collection.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Adds the specified object at the end of this
ArrayList .
| |||||||||||
Inserts the specified object into this
ArrayList at the specified
location.
| |||||||||||
Adds the objects in the specified collection to this
ArrayList .
| |||||||||||
Inserts the objects in the specified collection at the specified location
in this List.
| |||||||||||
Removes all elements from this
ArrayList , leaving it empty.
| |||||||||||
Returns a new
ArrayList with the same elements, the same size and
the same capacity as this ArrayList .
| |||||||||||
Searches this
ArrayList for the specified object.
| |||||||||||
Ensures that after this operation the
ArrayList can hold the
specified number of elements without further growing.
| |||||||||||
Compares the specified object to this list and return true if they are
equal.
| |||||||||||
Returns the element at the specified location in this list.
| |||||||||||
Returns the hash code of this list.
| |||||||||||
Searches this list for the specified object and returns the index of the
first occurrence.
| |||||||||||
Returns if this
Collection contains no elements.
| |||||||||||
Returns an iterator on the elements of this list.
| |||||||||||
Searches this list for the specified object and returns the index of the
last occurrence.
| |||||||||||
Removes the object at the specified location from this list.
| |||||||||||
Removes one instance of the specified object from this
Collection if one
is contained (optional).
| |||||||||||
Replaces the element at the specified location in this
ArrayList
with the specified object.
| |||||||||||
Returns the number of elements in this
ArrayList .
| |||||||||||
Returns an array containing all elements contained in this
ArrayList .
| |||||||||||
Returns a new array containing all elements contained in this
ArrayList .
| |||||||||||
Sets the capacity of this
ArrayList to be the same as the current
size.
|
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Removes the objects in the specified range from the start to the end
index minus one.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
Constructs a new instance of ArrayList
with the specified
initial capacity.
Parameters | |
---|---|
capacity |
int :
the initial capacity of this ArrayList .
|
Constructs a new ArrayList
instance with zero initial capacity.
Constructs a new instance of ArrayList
containing the elements of
the specified collection.
Parameters | |
---|---|
collection |
Collection :
the collection of elements to add.
|
Adds the specified object at the end of this ArrayList
.
Parameters | |
---|---|
object |
E :
the object to add. |
Returns | |
---|---|
boolean |
always true |
Inserts the specified object into this ArrayList
at the specified
location. The object is inserted before any previous element at the
specified location. If the location is equal to the size of this
ArrayList
, the object is added at the end.
Parameters | |
---|---|
index |
int :
the index at which to insert the object. |
object |
E :
the object to add. |
Throws | |
---|---|
IndexOutOfBoundsException |
when location < 0 || location > size()
|
Adds the objects in the specified collection to this ArrayList
.
Parameters | |
---|---|
collection |
Collection :
the collection of objects. |
Returns | |
---|---|
boolean |
true if this ArrayList is modified, false
otherwise.
|
Inserts the objects in the specified collection at the specified location in this List. The objects are added in the order they are returned from the collection's iterator.
Parameters | |
---|---|
index |
int :
the index at which to insert. |
collection |
Collection :
the collection of objects. |
Returns | |
---|---|
boolean |
true if this ArrayList is modified, false
otherwise. |
Throws | |
---|---|
IndexOutOfBoundsException |
when location < 0 || location > size()
|
Searches this ArrayList
for the specified object.
Parameters | |
---|---|
object |
Object :
the object to search for. |
Returns | |
---|---|
boolean |
true if object is an element of this
ArrayList , false otherwise
|
Ensures that after this operation the ArrayList
can hold the
specified number of elements without further growing.
Parameters | |
---|---|
minimumCapacity |
int :
the minimum capacity asked for.
|
Compares the specified object to this list and return true if they are equal. Two lists are equal when they both contain the same objects in the same order.
Parameters | |
---|---|
o |
Object :
the object to compare to this object. |
Returns | |
---|---|
boolean |
true if the specified object is equal to this list,
false otherwise. |
Returns the element at the specified location in this list.
Parameters | |
---|---|
index |
int :
the index of the element to return. |
Returns | |
---|---|
E |
the element at the specified index. |
Returns the hash code of this list. The hash code is calculated by taking each element's hashcode into account.
Returns | |
---|---|
int |
the hash code. |
Searches this list for the specified object and returns the index of the first occurrence.
Parameters | |
---|---|
object |
Object :
the object to search for. |
Returns | |
---|---|
int |
the index of the first occurrence of the object, or -1 if it was not found. |
Returns if this Collection
contains no elements. This implementation
tests, whether size
returns 0.
Returns | |
---|---|
boolean |
true if this Collection has no elements, false
otherwise. |
Returns an iterator on the elements of this list. The elements are iterated in the same order as they occur in the list.
Returns | |
---|---|
Iterator<E> |
an iterator on the elements of this list. |
Searches this list for the specified object and returns the index of the last occurrence.
Parameters | |
---|---|
object |
Object :
the object to search for. |
Returns | |
---|---|
int |
the index of the last occurrence of the object, or -1 if the object was not found. |
Removes the object at the specified location from this list.
Parameters | |
---|---|
index |
int :
the index of the object to remove. |
Returns | |
---|---|
E |
the removed object. |
Throws | |
---|---|
IndexOutOfBoundsException |
when location < 0 || location >= size()
|
Removes one instance of the specified object from this Collection
if one
is contained (optional). This implementation iterates over this
Collection
and tests for each element e
returned by the iterator,
whether e
is equal to the given object. If object != null
then this test is performed using object.equals(e)
, otherwise
using object == null
. If an element equal to the given object is
found, then the remove
method is called on the iterator and
true
is returned, false
otherwise. If the iterator does
not support removing elements, an UnsupportedOperationException
is thrown.
Parameters | |
---|---|
object |
Object :
the object to remove. |
Returns | |
---|---|
boolean |
true if this Collection is modified, false
otherwise. |
Replaces the element at the specified location in this ArrayList
with the specified object.
Parameters | |
---|---|
index |
int :
the index at which to put the specified object. |
object |
E :
the object to add. |
Returns | |
---|---|
E |
the previous element at the index. |
Throws | |
---|---|
IndexOutOfBoundsException |
when location < 0 || location >= size()
|
Returns the number of elements in this ArrayList
.
Returns | |
---|---|
int |
the number of elements in this ArrayList .
|
Returns an array containing all elements contained in this
ArrayList
. If the specified array is large enough to hold the
elements, the specified array is used, otherwise an array of the same
type is created. If the specified array is used and is larger than this
ArrayList
, the array element following the collection elements
is set to null.
Parameters | |
---|---|
contents |
T :
the array. |
Returns | |
---|---|
T[] |
an array of the elements from this ArrayList . |
Throws | |
---|---|
ArrayStoreException |
when the type of an element in this ArrayList cannot
be stored in the type of the specified array.
|
Returns a new array containing all elements contained in this
ArrayList
.
Returns | |
---|---|
Object[] |
an array of the elements from this ArrayList
|
Sets the capacity of this ArrayList
to be the same as the current
size.
See also:
Removes the objects in the specified range from the start to the end index minus one.
Parameters | |
---|---|
fromIndex |
int :
the index at which to start removing. |
toIndex |
int :
the index after the last element to remove. |