Java如何從集合中刪除指定的元素?

2019-10-16 22:28:32

在Java程式設計中,如何從集合中刪除指定的元素?

以下範例演示如何使用Collection類的collection.remove()方法從集合中刪除某個元素。

package com.yiibai;

import java.util.*;

public class CollectionRemoval {
    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: White Yellow Blue Green 
After removing [White]

Now collection data: Yellow Blue Green 
Collection size: 3