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 retainAll()用法及代码示例
- Java Collection toArray()用法及代码示例
- Java Collection addAll()用法及代码示例
- Java Collection size()用法及代码示例
- Java Collection add()用法及代码示例
- Java Collection removeAll()用法及代码示例
- Java Collection remove()用法及代码示例
- Java Collection hashCode()用法及代码示例
- Java Collection contains()用法及代码示例
- Java Collection spliterator()用法及代码示例
- Java Collection containsAll()用法及代码示例
- Java Collection removeIf()用法及代码示例
- Java Collection clear()用法及代码示例
- Java Collection isEmpty()用法及代码示例
- Java Collection iterator()用法及代码示例
- Java Collections synchronizedSortedSet()用法及代码示例
- Java Collections checkedQueue()用法及代码示例
- Java Collections unmodifiableNavigableSet()用法及代码示例
- Java Collections checkedSet()用法及代码示例
- Java Collections copy()用法及代码示例
注:本文由纯净天空筛选整理自 Java Collection equals() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。