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


Java Collections disjoint()用法及代码示例


Collections类disjoint()方法

  • disjoint() 方法可在java.util包。
  • disjoint() 方法用于检查给定的 Collection 对象是否可能包含任何公共元素。
  • disjoint() 方法是一个静态方法,因此可以通过类名访问它,如果我们尝试使用类对象访问该方法,则不会出现错误。
  • disjoint() 方法在检查不存在公共元素时可能会抛出异常。
    NullPointerException :当给定参数为空时可能会抛出此异常存在。

用法:

    public static boolean disjoint(Collection cl1, Collection cl2);

参数:

  • Collection cl1, Collection cl2– 代表不同的 Collection 对象。

返回值:

这个方法的返回类型是boolean, 当 Collection 对象中不存在公共元素时返回真,否则返回假。

例:

// Java program is to demonstrate the example
// of boolean disjoint() of Collections

import java.util.*;
public class Disjoint {
    public static void main(String args[]) {
        // Instantiate two LinkedList object
        List < Integer > l1 = new LinkedList < Integer > ();
        List < Integer > l2 = new LinkedList < Integer > ();

        // By using add() method is to add
        // few elements in l1
        l1.add(10);
        l1.add(20);
        l1.add(30);
        l1.add(40);

        // By using add() method is to add
        // few elements in l2
        l2.add(60);
        l2.add(70);
        l2.add(80);
        l2.add(90);

        // Display LinkedList
        System.out.println("l1:" + l1);
        System.out.println("l2:" + l2);

        // By using disjoint() method returns 
        // true when no common elements exists
        // in both the collections
        boolean status = Collections.disjoint(l1, l2);

        System.out.println();

        // Display status
        System.out.println("Collections.disjoint(l1,l2):" + status);
    }
}

输出

l1:[10, 20, 30, 40]
l2:[60, 70, 80, 90]

Collections.disjoint(l1,l2):true


相关用法


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