在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
使用泛型類可以靈活地定義不同類型的鍵值對。