为什么java.util.HashSet没有get(Object o)方法?
我见过关于根据索引值从 中获取对象的其他问题,我理解为什么这是不可能的。但是我无法找到一个很好的解释来解释为什么不允许使用get by对象,所以我想我会问。Set
HashSet
由一个支持,所以从中获取对象应该非常简单。就像现在一样,看来我必须迭代中的每个项目,并测试似乎不必要的平等。HashMap
HashSet
我可以只使用一个,但我不需要键:值对,我只需要一个.Map
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
}
}
是因为等式方法是为了测试“绝对”相等性而不是“逻辑”相等性(在这种情况下就足够了)吗?contains(Object o)