我有一个BiDiMap类。如何通过不但接受String
而且还接受Object
类型的对象作为输入参数,并使所有原始功能正常工作,使它变得通用。例如,我希望能够将功能put()
与Object
,Object
用作输入参数,而不是String
,String
。我想将所有输入参数和String
类型的返回值更改为Object
类型。
package MyBiDiMap;
import java.util.HashMap;
import java.util.Map;
public class BiDiMap {
private Map<String, String> keyValue;
private Map<String, String> valueKey;
public BiDiMap() {
this.keyValue = new HashMap<>();
this.valueKey = new HashMap<>();
}
private BiDiMap(Map<String, String> keyValue,
Map<String, String> valueKey) {
this.keyValue = keyValue;
this.valueKey = valueKey;
}
public void put(String key, String value) {
if (this.keyValue.containsKey(key)
|| this.valueKey.containsKey(value)) {
this.remove(key);
this.removeInverse(value);
}
this.keyValue.put(key, value);
this.valueKey.put(value, key);
}
public String get(String key) {
return this.keyValue.get(key);
}
public String getInverse(String value) {
return this.valueKey.get(value);
}
public void remove(String key) {
String value = this.keyValue.remove(key);
this.valueKey.remove(value);
}
public void removeInverse(String value) {
String key = this.valueKey.remove(value);
this.keyValue.remove(key);
}
public int size() {
return this.keyValue.size();
}
public BiDiMap getInverse() {
return new BiDiMap(this.valueKey, this.keyValue);
}
}
答案 0 :(得分:1)
答案很简单:在类中引入两个通用类型,分别为K和V,然后用K(应在其中使用键类型)大力替换所有出现的String,并类似地将V替换为V
换句话说:在声明两个映射时不要使用特定的类型,但是在所有地方,请使用在类级别添加的新泛型。