当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java AbstractCollection remove()用法及代码示例


Java AbstractCollection 的 remove(Object O) 方法是从 Collection 中删除特定元素。

用法:

AbstractCollection.remove(Object O)

参数:参数 O 属于 Collection 类型,指定要从集合中移除的元素。

返回值:如果参数中指定的元素最初存在于集合中并且成功删除,则此方法返回 True,否则返回 False。

以下示例程序旨在说明 Java.util.AbstractCollection.remove() 方法:



程序1:


// Java code to illustrate remove()
  
import java.util.*;
import java.util.AbstractCollection;
  
public class AbstractCollectionDemo {
    public static void main(String args[])
    {
  
        // Creating an empty AbstractCollection
        AbstractCollection<String>
            abs = new TreeSet<String>();
  
        // Use add() method to add
        // elements into the Collection
        abs.add("Welcome");
        abs.add("To");
        abs.add("Geeks");
        abs.add("4");
        abs.add("Geeks");
        abs.add("TreeSet");
  
        // Displaying the Collection
        System.out.println("Collection:" + abs);
  
        // Removing elements using remove() method
        abs.remove("Geeks");
        abs.remove("4");
        abs.remove("TreeSet");
  
        // Displaying the Collection after removal
        System.out.println("New Collection:" + abs);
    }
}
输出:
Collection:[4, Geeks, To, TreeSet, Welcome]
New Collection:[To, Welcome]

程序2:


// Java code to illustrate remove()
  
import java.util.*;
import java.util.AbstractCollection;
  
public class AbstractCollectionDemo {
    public static void main(String args[])
    {
  
        // Creating an empty AbstractCollection
        AbstractCollection<String>
            abs = new LinkedList<String>();
  
        // Use add() method to add
        // elements into the Collection
        abs.add("Welcome");
        abs.add("To");
        abs.add("Geeks");
        abs.add("4");
        abs.add("Geeks");
        abs.add("LinkedList");
  
        // Displaying the Collection
        System.out.println("Collection:" + abs);
  
        // Removing elements using remove() method
        abs.remove("Geeks");
        abs.remove("4");
        abs.remove("LinkedList");
  
        // Displaying the Collection after removal
        System.out.println("New Collection:" + abs);
    }
}
输出:
Collection:[Welcome, To, Geeks, 4, Geeks, LinkedList]
New Collection:[Welcome, To, Geeks]




相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 AbstractCollection remove() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。