我已经看到其他关于Set
基于索引值从 ' 获取对象的问题,我理解为什么这是不可能的。但是我无法找到一个很好的解释来解释为什么不允许按对象获取,所以我想我会问。
HashSet
由 a 支持,HashMap
因此从中获取对象应该非常简单。就像现在一样,看来我必须遍历中的每个项目HashSet
并测试似乎没有必要的相等性。
我可以只使用 aMap
但我不需要 key:value 对,我只需要一个Set
.
例如说我有Foo.java
:
package example;
import java.io.Serializable;
public class Foo implements Serializable {
String _id;
String _description;
public Foo(String id){
this._id = id
}
public void setDescription(String description){
this._description = description;
}
public String getDescription(){
return this._description;
}
public boolean equals(Object obj) {
//equals code, checks if id's are equal
}
public int hashCode() {
//hash code calculation
}
}
和Example.java
:
package example;
import java.util.HashSet;
public class Example {
public static void main(String[] args){
HashSet<Foo> set = new HashSet<Foo>();
Foo foo1 = new Foo("1");
foo1.setDescription("Number 1");
set.add(foo1);
set.add(new Foo("2"));
//I want to get the object stored in the Set, so I construct a object that is 'equal' to the one I want.
Foo theFoo = set.get(new Foo("1")); //Is there a reason this is not allowed?
System.out.println(theFoo.getDescription); //Should print Number 1
}
}
是否因为 equals 方法旨在测试“绝对”相等而不是“逻辑”相等(在这种情况下contains(Object o)
就足够了)?