阅读量:2
在Java中,可以使用泛型类来定义一个KeyValuePair。可以按照以下方式进行定义:
public class KeyValuePair<K, V> { private K key; private V value; public KeyValuePair(K key, V value) { this.key = key; this.value = value; } public K getKey() { return key; } public V getValue() { return value; } public void setKey(K key) { this.key = key; } public void setValue(V value) { this.value = value; } }
上述代码定义了一个泛型类 KeyValuePair
,它有两个属性 key
和 value
,分别表示键和值。构造方法用于初始化键值对,同时提供了访问和修改键值对的方法。
可以根据需要创建一个 KeyValuePair
对象,例如:
KeyValuePair<String, Integer> pair = new KeyValuePair<>("key", 10); String key = pair.getKey(); // 返回 "key" int value = pair.getValue(); // 返回 10
使用泛型类可以灵活地定义不同类型的键值对。