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


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


AbstractCollection 中的 retainAll() 方法有助于从另一个集合中保留指定集合的​​元素,并从结果中删除不匹配的元素。

用法:

public boolean retainAll(Collection collection)

参数:此方法接受一个参数集合,该集合是包含需要保留的元素的集合。

返回值:该方法返回一个布尔值。如果集合中的元素被成功保留,则返回 “true”,否则返回 “false” 值。

异常:此方法引发以下异常:



  • 不支持的操作异常:如果集合不支持 retainAll() 方法。
  • ClassCastException:如果主集合的任何元素的类型与指定的集合不兼容(即被保留)。这是可选的。
  • NullPointerException :如果主集合包含任何空元素并且指定的集合不允许任何空值,或者指定的集合包含空元素。这是可选的。

下面是一些例子来说明 retainAll() 方法的使用:

程序1:


// Java program to illustrate retainAll() method
  
import java.util.*;
  
public class AbstractCollectionDemo {
    public static void main(String[] args)
    {
        // Creating an arraylist
        AbstractCollection<Object> set1
            = new ArrayList<Object>();
  
        // adding values in set 1 list
        set1.add("one");
        set1.add("two");
        set1.add("three");
  
        // creating another arraylist
        AbstractCollection<Object> set2
            = new ArrayList<Object>();
  
        // adding values in set 2 list
        set2.add("three");
        set2.add("one");
        set2.add("five");
  
        // before invoking retainAll()
        System.out.println("Set 1 contains:\n"
                           + set1 + "\n");
        System.out.println("Set 2 contains:\n"
                           + set2 + "\n");
  
        // invoking retainAll()
        set2.retainAll(set1);
  
        // after invoking retainAll()
        System.out.println("Set 2 after"
                           + " invoking retainAll() method:\n"
                           + set2);
    }
}
输出:
Set 1 contains:
[one, two, three]

Set 2 contains:
[three, one, five]

Set 2 after invoking retainAll() method:
[three, one]

程序2:显示 NullPointerException


// Java program to illustrate retainAll() method
  
import java.util.*;
  
public class NullPointerExample {
    public static void main(String[] args)
    {
  
        // Creating an arraylist
        // and assigning null to it
        AbstractCollection<Object> set1 = null;
  
        // creating another arraylist
        AbstractCollection<Object> set2
            = new ArrayList<Object>();
  
        // adding values in set 2 list
        set2.add("one");
        set2.add("two");
        set2.add("three");
  
        // before invoking retainAll()
        System.out.println("Set 1 contains:"
                           + set1 + "\n");
        System.out.println("Set 2 contains:"
                           + set2 + "\n");
  
        try {
            // invoking retainAll()
            set2.retainAll(set1);
  
            // after invoking retainAll()
            System.out.println("Set 2 after invoking "
                               + "retainAll() method:\n"
                               + set2);
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
输出:
Set 1 contains:null

Set 2 contains:[one, two, three]

java.lang.NullPointerException



相关用法


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