通用BiDiMap

时间:2018-09-08 03:38:41

标签: java generics hashmap bidirectional

我有一个BiDiMap类。如何通过不但接受String而且还接受Object类型的对象作为输入参数,并使所有原始功能正常工作,使它变得通用。例如,我希望能够将功能put()ObjectObject用作输入参数,而不是StringString。我想将所有输入参数和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);
    }
}

1 个答案:

答案 0 :(得分:1)

答案很简单:在类中引入两个通用类型,分别为K和V,然后用K(应在其中使用键类型)大力替换所有出现的String,并类似地将V替换为V

换句话说:在声明两个映射时不要使用特定的类型,但是在所有地方,请使用在类级别添加的新泛型。