Remove the item from List by value - Java Collection Framework

Java examples for Collection Framework:List

Description

Remove the item from List by value

Demo Code

import java.util.ArrayList;

public class Main
{
   public static void main(String[] args)
   {//from w ww .j av a2 s.  co m
      // create a new ArrayList of Strings with an initial capacity of 10
      ArrayList<String> items = new ArrayList<String>(); 

      items.add("red"); // append an item to the list          
      items.add(0, "yellow"); // insert "yellow" at index 0


      items.remove("yellow"); // remove the first "yellow"
      display(items, "Remove first instance of yellow:"); 

   } 

   // display the ArrayList's elements on the console
   public static void display(ArrayList<String> items, String header)
   {
      System.out.print(header); // display header

      // display each element in items
      for (String item : items)
         System.out.printf(" %s", item);

      System.out.println();
   } 
}

Result


Related Tutorials