how to remove from arraylist code example
Example 1: ArrayList removeIf() method in java
import java.util.ArrayList;
public class ArrayListRemoveIfMethodExample
{
public static void main(String[] args)
{
ArrayList<Integer> al = new ArrayList<Integer>();
al.add(15);
al.add(8);
al.add(58);
al.add(19);
// remove numbers divisible by 2
al.removeIf(n -> (n % 2 == 0));
// print list
for(int a : al)
{
System.out.println(a);
}
}
}
Example 2: How to remove element from arraylist in java
// Java.util.ArrayList.remove(Object) method example
import java.util.ArrayList;
import java.util.List;
public class ArrayListRemoveObjectMethod
{
public static void main(String[] args)
{
List<Integer> al = new ArrayList<>();
al.add(56);
al.add(28);
al.add(39);
al.add(59);
al.add(82);
System.out.println("Before using ArrayList.remove(Object) method size of ArrayList: " + al);
// removes element 56
al.remove(new Integer(56));
// removes element 28
al.remove(new Integer(28));
System.out.println("After using ArrayList.remove(Object) method size of ArrayList: " + al);
}
}
Example 3: remove item from arraylist in java
//Create the ArrayList
List<Integer> al = new ArrayList<>();
//Add the items
al.add(10);
al.add(18);
//Remove item(1 = 2and item in list)
al.remove(1);