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


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


java.util.HashSet类的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 HashSet<Integer> 
            HashSet<Integer> 
                arrset1 = new HashSet<Integer>(); 
  
            // Populating arrset1 
            arrset1.add(1); 
            arrset1.add(2); 
            arrset1.add(3); 
            arrset1.add(4); 
            arrset1.add(5); 
  
            // print arrset1 
            System.out.println("HashSet before "
                               + "removeAll() operation : "
                               + arrset1); 
  
            // Creating another object of  HashSet<Integer> 
            HashSet<Integer> 
                arrset2 = new HashSet<Integer>(); 
            arrset2.add(1); 
            arrset2.add(2); 
            arrset2.add(3); 
  
            // print arrset2 
            System.out.println("Collection Elements"
                               + " to be removed : "
                               + arrset2); 
  
            // Removing elemnts from arrset 
            // specified in arrset2 
            // using removeAll() method 
            arrset1.removeAll(arrset2); 
  
            // print arrset1 
            System.out.println("HashSet after "
                               + "removeAll() operation : "
                               + arrset1); 
        } 
  
        catch (NullPointerException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
输出:
HashSet before removeAll() operation : [1, 2, 3, 4, 5]
Collection Elements to be removed : [1, 2, 3]
HashSet 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 HashSet<Integer> 
            HashSet<Integer> 
                arrset1 = new HashSet<Integer>(); 
  
            // Populating arrset1 
            arrset1.add(1); 
            arrset1.add(2); 
            arrset1.add(3); 
            arrset1.add(4); 
            arrset1.add(5); 
  
            // print arrset1 
            System.out.println("HashSet before "
                               + "removeAll() operation : "
                               + arrset1); 
  
            // Creating another object of  HashSet<Integer> 
            HashSet<Integer> 
                arrset2 = null; 
  
            // print arrset2 
            System.out.println("Collection Elements"
                               + " to be removed : "
                               + arrset2); 
  
            System.out.println("\nTrying to pass "
                               + "null as a specified element\n"); 
  
            // Removing elemnts from arrset 
            // specified in arrset2 
            // using removeAll() method 
            arrset1.removeAll(arrset2); 
  
            // print arrset1 
            System.out.println("HashSet after "
                               + "removeAll() operation : "
                               + arrset1); 
        } 
  
        catch (NullPointerException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
输出:
HashSet before removeAll() operation : [1, 2, 3, 4, 5]
Collection Elements to be removed : null

Trying to pass null as a specified element

Exception thrown : java.lang.NullPointerException


相关用法


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