Javaexamples-collection-remove

提供:Dev Guides
移動先:案内検索

Javaの例-コレクションの削除

問題の説明

コレクションから特定の要素を削除する方法は?

溶液

次の例は、Collectionクラスのcollection.remove()メソッドを使用して、コレクションから特定の要素を削除する方法を示しています。

import java.util.*;

public class CollectionTest {
   public static void main(String [] args) {
      System.out.println( "Collection Example!\n" );
      int size;
      HashSet <String>collection = new HashSet <String>();
      String str1 = "Yellow", str2 = "White", str3 = "Green", str4 = "Blue";
      Iterator iterator;
      collection.add(str1);
      collection.add(str2);
      collection.add(str3);
      collection.add(str4);
      System.out.print("Collection data: ");
      iterator = collection.iterator();

      while (iterator.hasNext()){
         System.out.print(iterator.next() + " ");
      }
      System.out.println();
      collection.remove(str2);
      System.out.println("After removing [" + str2 + "]\n");
      System.out.print("Now collection data: ");
      iterator = collection.iterator();

      while (iterator.hasNext()){
         System.out.print(iterator.next() + " ");
      }
      System.out.println();
      size = collection.size();
      System.out.println("Collection size: " + size + "\n");
   }
}

結果

上記のコードサンプルは、次の結果を生成します。

Collection Example!

Collection data: Blue White Green Yellow

After removing [White]

Now collection data: Blue Green Yellow

Collection size: 3