Add to ArrayList
boolean add(E e)
- Appends the specified element to the end of this list.
void add(int index, E element)
- Inserts the specified element at the specified position in this list.
boolean addAll(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.
boolean addAll(int index, Collection<? extends E> c)
- Inserts all of the elements in the specified collection into this list, starting at the specified position.
import java.util.ArrayList;
public class Main {
public static void main(String args[]) {
ArrayList<String> al = new ArrayList<String>();
al.add("C");
al.add("A");
al.add("E");
al.add("java2s.com");
al.add("D");
al.add("F");
al.add(1, "java2s.com");
System.out.println(al);
}
}
The output:
[C, java2s.com, A, E, java2s.com, D, F]
Home
Java Book
Collection
Java Book
Collection
ArrayList:
- ArrayList Class
- Create ArrayList object
- Add to ArrayList
- Clear an ArrayList
- Shallow copy of current ArrayList
- If contain a certain object
- Increases the capacity of an ArrayList
- Get/Replace element by index
- Get object for index
- Remove from ArrayList
- Get the size and trim to size
- If ArrayList is empty
- Convert ArrayList to array