如何在java中为泛型类创建泛型构造函数?

2022-08-31 14:47:38

我想创建一个KeyValue类,但以通用方式,这就是我写的内容:

public class KeyValue<T,E> 
{

    private T key;
    private E value;
    /**
     * @return the key
     */
    public T getKey() {
        return key;
    }
    /**
     * @param key the key to set
     */
    public void setKey(T key) {
        this.key = key;
    }
    /**
     * @return the value
     */
    public E getValue() {
        return value;
    }
    /**
     * @param value the value to set
     */
    public void setValue(E value) {
        this.value = value;
    }

    public KeyValue <T, E>(T k , E v) // I get compile error here
    {
        setKey(k);
        setValue(v);
    }
}

错误显示:“令牌”>“上的语法错误,此令牌之后的标识符预期”

那么我应该如何在java中创建一个泛型构造函数呢?


答案 1

您需要从构造函数的签名中删除:它已经隐式存在。<T, E>

public KeyValue(T k , E v) // No compile errors here :)
{
    setKey(k);
    setValue(v);
}

答案 2

编写构造函数的方式与编写其他方法的方式完全相同

public KeyValue(T k , E v) 
    {
        setKey(k);
        setValue(v);
    }

推荐