java.util.Collections.disjoint()


描述

所述不相交的(Collection<?>, Collection<?>)方法被用来为“真”,如果两个指定集合没有共同的元素。

声明

以下是java.util.Collections.disjoint()方法的声明。

public static boolean disjoint(Collection<?> c1,Collection<?> c2)

参数

c1 - 这是一个集合。

c2 - 这是另一个集合。

返回值

NA

异常

NullPointerException - 如果任一集合为null,则抛出此异常。

实例

以下示例显示了java.util.Collections.disjoint()的用法

package com.tutorialspoint;

import java.util.*;

public class CollectionsDemo {
   public static void main(String args[]) {

      // create two lists    
      List<String> srclst = new ArrayList<String>(5);
      List<String> destlst = new ArrayList<String>(10);

      // populate two lists
      srclst.add("Java");
      srclst.add("is");
      srclst.add("best");

      destlst.add("C++");
      destlst.add("is not");
      destlst.add("older");      

      // check elements in both collections
      boolean iscommon = Collections.disjoint(srclst, destlst);

      System.out.println("No commom elements: "+iscommon);    
   }    
}

让我们编译并运行上面的程序,这将产生以下结果。

No commom elements: true