【发布时间】:2015-10-25 09:26:13
【问题描述】:
我正在尝试实现一个泛型 HashMap,但由于某种原因,java 编译器不允许我返回正确的泛型类型。
这是我的 HashMap 代码:
public class SimpleHashMap<K,V> {
private int tableSize;
private HashEntry[] table;
public SimpleHashMap(){
table = new HashEntry[tableSize];
for(int i = 0; i < table.length; i++){
table[i] = null;
}
}
public V put(K key, V value){
int keyIndex = getHashCode(key);
if(table[keyIndex] == null){
table[keyIndex] = new HashEntry<K, V>(key, value);
}
else{
table[keyIndex] = new HashEntry<K, V>(key, value, table[keyIndex]);
}
return value;
}
public V get(K key){
int keyIndex = getHashCode(key);
if(table[keyIndex] == null){
return null;
}
else{
HashEntry temp = table[keyIndex];
while(temp != null){
if(temp.key.equals(key)){
return temp.value;
}
temp = temp.next;
}
}
}
public int getHashCode(K key){
return key.hashCode() % tableSize;
}
}
这是我的 HashEntry 代码:
public class HashEntry<K,V>{
public K key;
public V value;
public HashEntry next;
public HashEntry(K key, V value){
this(key, value, null);
}
public HashEntry(K key, V value, HashEntry next){
this.key = key;
this.value = value;
this.next = next;
}
}
我在编译时得到的唯一错误是:
error: incompatible types: Object cannot be converted to V
return temp.value;
^
where V is a type-variable:
V extends Object declared in class SimpleHashMap
我尝试过显式转换它,但它仍然拒绝返回 V 类型的对象。
【问题讨论】:
-
我相信你的 HashEntry temp 应该有类型参数
-
事实上你在 SimpleHashMap 中的所有 HashEntry 引用都应该使用
因为 HashEntry 不是 SimpleHashMap 的内部类
标签: java generics casting hashmap