首页 > 代码库 > ArrayList

ArrayList


ArrayList相当于STL里面的Vector。

<script src="https://code.csdn.net/snippets/505358.js" type="text/javascript"></script>
下面是成员方法。

Method Summary
 booleanadd(E e) 
           Appends the specified element to the end of this list.
 voidadd(int index, E element) 
           Inserts the specified element at the specified position in this list.
 booleanaddAll(Collection<? extends E> c) 
           Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection‘s Iterator.
 booleanaddAll(int index, Collection<? extends E> c) 
           Inserts all of the elements in the specified collection into this list, starting at the specified position.
 voidclear() 
           Removes all of the elements from this list.
 Objectclone() 
           Returns a shallow copy of this ArrayList instance.
 booleancontains(Object o) 
           Returns true if this list contains the specified element.
 voidensureCapacity(int minCapacity) 
           Increases the capacity of this ArrayList instance, if necessary, to ensure that it can hold at least the number of elements specified by the minimum capacity argument.
 Eget(int index) 
           Returns the element at the specified position in this list.
 intindexOf(Object o) 
           Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element.
 booleanisEmpty() 
           Returns true if this list contains no elements.
 intlastIndexOf(Object o) 
           Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element.
 Eremove(int index) 
           Removes the element at the specified position in this list.
 booleanremove(Object o) 
           Removes the first occurrence of the specified element from this list, if it is present.
protected  voidremoveRange(int fromIndex, int toIndex) 
           Removes from this list all of the elements whose index is between fromIndex, inclusive, and toIndex, exclusive.
 Eset(int index, E element) 
           Replaces the element at the specified position in this list with the specified element.
 intsize() 
           Returns the number of elements in this list.
 Object[]toArray() 
           Returns an array containing all of the elements in this list in proper sequence (from first to last element).
<T> T[]toArray(T[] a) 
           Returns an array containing all of the elements in this list in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array.
 voidtrimToSize() 
           Trims the capacity of this ArrayList instance to be the list‘s current size.

ArrayList