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


Java AbstractSequentialList removeAll()用法及代码示例


java.util.AbstractSequentialList类的removeAll()方法用于从此列表中删除所有包含在指定集合中的元素。

用法:

public boolean removeAll(Collection c)

参数:此方法将集合c作为包含要从此列表中删除的元素的参数。


返回值:如果此列表由于调用而更改,则此方法返回true。

异常:如果此列表包含null元素并且指定的集合不允许null元素(可选),或者指定的collection为null,则此方法引发NullPointerException。

以下示例说明了removeAll()方法。

范例1:

// Java program to demonstrate 
// removeAll() method for Integer value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) throws Exception 
    { 
  
        try { 
  
            // Creating object of AbstractSequentialList<Integer> 
            AbstractSequentialList<Integer> 
                arrlist1 = new LinkedList<Integer>(); 
  
            // Populating arrlist1 
            arrlist1.add(1); 
            arrlist1.add(2); 
            arrlist1.add(3); 
            arrlist1.add(4); 
            arrlist1.add(5); 
  
            // print arrlist1 
            System.out.println("AbstractSequentialList before "
                               + "removeAll() operation:"
                               + arrlist1); 
  
            // Creating another object  
// of  AbstractSequentialList<Integer> 
            AbstractSequentialList<Integer> 
                arrlist2 = new LinkedList<Integer>(); 
            arrlist2.add(1); 
            arrlist2.add(2); 
            arrlist2.add(3); 
  
            // print arrlist2 
            System.out.println("Collection Elements"
                               + " to be removed:"
                               + arrlist2); 
  
            // Removing elements from arrlist 
            // specified in arrlist2 
            // using removeAll() method 
            arrlist1.removeAll(arrlist2); 
  
            // print arrlist1 
            System.out.println("AbstractSequentialList after "
                               + "removeAll() operation:"
                               + arrlist1); 
        } 
  
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
AbstractSequentialList before removeAll() operation:[1, 2, 3, 4, 5]
Collection Elements to be removed:[1, 2, 3]
AbstractSequentialList after removeAll() operation:[4, 5]

范例2:对于NullPointerException

// Java program to demonstrate 
// removeAll() method for Integer value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) throws Exception 
    { 
  
        try { 
  
            // Creating object of AbstractSequentialList<Integer> 
            AbstractSequentialList<Integer> 
                arrlist1 = new LinkedList<Integer>(); 
  
            // Populating arrlist1 
            arrlist1.add(1); 
            arrlist1.add(2); 
            arrlist1.add(3); 
            arrlist1.add(4); 
            arrlist1.add(5); 
  
            // print arrlist1 
            System.out.println("AbstractSequentialList before "
                               + "removeAll() operation:"
                               + arrlist1); 
  
            // Creating another object of  AbstractSequentialList<Integer> 
            AbstractSequentialList<Integer> 
                arrlist2 = null; 
  
            // print arrlist2 
            System.out.println("Collection Elements"
                               + " to be removed:"
                               + arrlist2); 
  
            System.out.println("\nTrying to pass "
                               + "null as a specified element\n"); 
  
            // Removing elements from arrlist 
            // specified in arrlist2 
            // using removeAll() method 
            arrlist1.removeAll(arrlist2); 
  
            // print arrlist1 
            System.out.println("AbstractSequentialList after "
                               + "removeAll() operation:"
                               + arrlist1); 
        } 
  
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
AbstractSequentialList before removeAll() operation:[1, 2, 3, 4, 5]
Collection Elements to be removed:null

Trying to pass null as a specified element

java.lang.NullPointerException


相关用法


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