日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

Java 删除集合中指定的元素

發布時間:2025/3/12 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Java 删除集合中指定的元素 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

使用 Collection 類的 collection.remove() 方法來刪除集合中的指定的元素

完整代碼

import java.util.*;public class Main {public static void main(String [] args) { System.out.println( "集合實例!\n" ); int size;HashSet collection = new HashSet ();String str1 = "Red", str2 = "Yellow", str3 = "White", str4 = "Blue"; Iterator iterator;collection.add(str1); collection.add(str2); collection.add(str3); collection.add(str4);System.out.print("集合數據: "); iterator = collection.iterator(); while (iterator.hasNext()){System.out.print(iterator.next() + " "); }System.out.println();collection.remove(str2);System.out.println("刪除之后 [" + str2 + "]\n");System.out.print("現在集合的數據是: ");iterator = collection.iterator(); while (iterator.hasNext()){System.out.print(iterator.next() + " "); }System.out.println();size = collection.size();System.out.println("集合大小: " + size + "\n");} }

結果輸出

集合實例!集合數據: Red Yellow White Blue 刪除之后 [Yellow ]現在集合的數據是: Red White Blue 集合大小: 3

總結

以上是生活随笔為你收集整理的Java 删除集合中指定的元素的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。