Java 删除集合中指定的元素
生活随笔
收集整理的這篇文章主要介紹了
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 删除集合中指定的元素的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Spring Boot 注解定时任务
- 下一篇: Java中Error和Exception