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


Java SortedSet retainAll()用法及代码示例


SortedSet接口的retainAll()方法用于从此SortedSet中保留指定集合中包含的所有其元素。

用法:

public boolean retainAll(Collection c)

参数:此方法将集合c作为参数,包含要从此SortedSet中保留的元素。


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

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

注意:SortedSet中的retainAll()方法是从Java中的Set接口继承的。

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

示例1:

// Java program to demonstrate 
// retainAll() method for Integer value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] args) 
        throws Exception 
    { 
  
        try { 
  
            // Creating object of Set 
            SortedSet<Integer> arrset1 
                = new TreeSet<Integer>(); 
  
            // Populating arrset1 
            arrset1.add(1); 
            arrset1.add(2); 
            arrset1.add(3); 
            arrset1.add(4); 
            arrset1.add(5); 
  
            // print arrset1 
            System.out.println( 
                "Set before "
                + "retainAll() operation : "
                + arrset1); 
  
            // Creating another object of  Set 
            SortedSet<Integer> arrset2 
                = new TreeSet<Integer>(); 
            arrset2.add(1); 
            arrset2.add(2); 
            arrset2.add(3); 
  
            // print arrset2 
            System.out.println( 
                "Collection Elements"
                + " to be retained : "
                + arrset2); 
  
            // Removing elements from arrset 
            // specified in arrset2 
            // using retainAll() method 
            arrset1.retainAll(arrset2); 
  
            // print arrset1 
            System.out.println( 
                "Set after "
                + "retainAll() operation : "
                + arrset1); 
        } 
  
        catch (NullPointerException e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
Set before retainAll() operation : [1, 2, 3, 4, 5]
Collection Elements to be retained : [1, 2, 3]
Set after retainAll() operation : [1, 2, 3]

示例2:对于NullPointerException。

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

Trying to pass null as a specified element

java.lang.NullPointerException

参考: https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#retainAll(java.util.Collection)



相关用法


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