Java中的KeyValuePair怎么定义

avatar
作者
筋斗云
阅读量: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,它有两个属性 keyvalue,分别表示键和值。构造方法用于初始化键值对,同时提供了访问和修改键值对的方法。

可以根据需要创建一个 KeyValuePair 对象,例如:

KeyValuePair<String, Integer> pair = new KeyValuePair<>("key", 10); String key = pair.getKey(); // 返回 "key" int value = pair.getValue(); // 返回 10 

使用泛型类可以灵活地定义不同类型的键值对。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!