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


Java Collection equals()用法及代码示例


Java 集合接口的 equals() 方法将指定对象与此集合进行比较是否相等。

用法

public boolean equals(Object o)

参数

参数 'o' 表示要与此集合进行相等性比较的对象。

覆盖

此方法覆盖类 Object 中的 equals

返回

如果指定的对象等于此集合,则 equals 方法返回布尔值 'true',否则返回 false。

例子1

import java.util.Collection;
import java.util.HashSet;
public class JavaCollectionEqualsExample1 {
   static  int a=5;
    public static void main(String[] args) {
        Collection<Integer> collection = new HashSet<>();
        Collection<Integer> collection1 = new HashSet<>();
        collection.add(5);
        collection1.add(5);
        //will return true if both the collections are equal
        boolean val=collection.equals(collection1);
        System.out.println(val);
    }
}

输出:

true

例子2

import java.util.Collection;
import java.util.HashSet;
public class JavaCollectionEqualsExample2 {
    public static void main(String[] args) {
        Collection<Integer> collection = new HashSet<>();
        Collection<Integer> collection1 = new HashSet<>();
        collection.add(5);
        collection1.add(5);
        collection1.add(8);
        //will return true if both the collections are equal
        boolean val=collection.equals(collection1);
        System.out.println("Equals methods will return:"+val);
    }
}

输出:

Equals methods will return:false




相关用法


注:本文由纯净天空筛选整理自 Java Collection equals() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。