我必须将值放在linkedhashmap中。(因为,如果已经有值,我想要排序和确定)
我以为包含键返回true如果字符串值相同,例如 temp 和 temp2 。但是, testmap.put(temp2,8); 正在运行。
我不知道为什么。如果那不是正确的答案,我该如何以快速方式存储或访问值?
public class TestClass{
public String one;
public String two;
TestClass(String one, String two){
this.one=one;
this.two=two;
}
}
public void testPersonWord(){
LinkedHashMap<TestClass, Integer> testMap= new LinkedHashMap<>();
TestClass temp= new TestClass("hdy","hello");
testMap.put(temp,3);
TestClass temp2= new TestClass("hdy","hello");
if(testMap.containsKey(temp2)){
testMap.replace(temp2,5);
}else{
testMap.put(temp2,8);
}
}
这是containKey
方法。hashCode
用于比较,因此肯定两个对象的哈希码是差异的。
您可以考虑使用原始密钥或使用testClass.getOne()比较字符串。
/**
* Returns <tt>true</tt> if this map contains a mapping for the
* specified key.
*
* @param key The key whose presence in this map is to be tested
* @return <tt>true</tt> if this map contains a mapping for the specified
* key.
*/
public boolean containsKey(Object key) {
return getNode(hash(key), key) != null;
}
希望这会有所帮助!