- Java.util - WeakHashMap
- Java.util - Vector
- Java.util - UUID
- Java.util - TreeSet
- Java.util - TreeMap
- Java.util - TimeZone
- Java.util - TimerTask
- Java.util - Timer
- Java.util - StringTokenizer
- Java.util - Stack
- Java.util - SimpleTimeZone
- Java.util - ServiceLoader
- Java.util - Scanner
- Java.util - ResourceBundle.Control
- Java.util - ResourceBundle
- Java.util - Random
- Java.util - PropertyResourceBundle
- Java.util - PropertyPermission
- Java.util - Properties
- Java.util - PriorityQueue
- Java.util - Observable
- Java.util - Locale
- Java.util - ListResourceBundle
- Java.util - LinkedList
- Java.util - LinkedHashSet
- Java.util - LinkedHashMap
- Java.util - IdentityHashMap
- Java.util - Hashtable
- Java.util - HashSet
- Java.util - HashMap
- Java.util - GregorianCalendar
- Java.util - Formatter
- Java.util - EnumSet
- Java.util - EnumMap
- Java.util - Dictionary
- Java.util - Date
- Java.util - Currency
- Java.util - Collections
- Java.util - Calendar
- Java.util - BitSet
- Java.util - Arrays
- Java.util - ArrayList
- Java.util - ArrayDeque
- Java.util - Home
Java.util Package Extras
- Java.util - Discussion
- Java.util - Useful Resources
- Java.util - Enumerations
- Java.util - Exceptions
- Java.util - Interfaces
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Java ArrayList Class
Introduction
The Java ArrayList class provides resizable-array and implements the List interface.Following are the important points about ArrayList −
It implements all optional pst operations and it also permits all elements, includes null.
It provides methods to manipulate the size of the array that is used internally to store the pst.
The constant factor is low compared to that for the LinkedList implementation.
Class declaration
Following is the declaration for java.util.ArrayList class −
pubpc class ArrayList<E> extends AbstractList<E> implements Seriapzable, Cloneable, Iterable<E>, Collection<E>, List<E>, RandomAccess
Here <E> represents an Element. For example, if you re building an array pst of Integers then you d initiapze it as
ArrayList<Integer> pst = new ArrayList<Integer>();
Class constructors
Sr.No. |
Constructor & Description |
---|---|
1 |
ArrayList() This constructor is used to create an empty pst with an initial capacity sufficient to hold 10 elements. |
2 |
ArrayList(Collection<? extends E> c) This constructor is used to create a pst containing the elements of the specified collection. |
3 |
ArrayList(int initialCapacity) This constructor is used to create an empty pst with an initial capacity. |
Class methods
Sr.No. |
Method & Description |
---|---|
1 |
This method appends the specified element to the end of this pst. |
2 |
This method appends all of the elements in the specified collection to the end of this pst, in the order that they are returned by the specified collection s Iterator |
3 |
This method removes all of the elements from this pst. |
4 |
This method returns a shallow copy of this ArrayList instance. |
5 |
This method returns true if this pst contains the specified element. |
6 |
This increases the capacity of this ArrayList. |
7 |
This method returns the element at the specified position in this pst. |
8 |
This method returns the index of the first occurrence of the specified element in this pst, or -1 if this pst does not contain the element. |
9 |
This method returns true if this pst contains no elements. |
10 |
This method returns an iterator over the elements in this pst in proper sequence. |
11 |
This method returns the index of the last occurrence of the specified element in this pst, or -1 if this pst does not contain the element. |
12 |
This method returns an pst iterator over the elements in this pst in proper sequence. |
13 |
This method removes the element at the specified position in this pst. |
14 |
Removes from this pst all of its elements that are contained in the specified collection. |
15 |
This method Removes all of the elements of this collection that satisfy the given predicate. |
16 |
Retains from this pst all of its elements that are contained in the specified collection. |
17 |
This method replaces the element at the specified position in this pst with the specified element. |
18 |
This method returns the number of elements in this pst. |
19 |
This method creates a late-binding and fail-fast Sppterator over the elements in this pst. |
20 |
This method returns a view of the portion of this pst between the specified fromIndex, inclusive, and toIndex, exclusive. |
21 |
This method returns an array containing all of the elements in this pst in proper sequence (from first to last element). |
22 |
This method trims the capacity of this ArrayList instance to be the pst s current size. |
Methods inherited
This class inherits methods from the following classes −
java.util.AbstractList
java.lang.AbstractCollection
java.util.Object
java.util.List