我們編寫一個使用泛型的庫,我不確定如何創建泛型類型的實例。不久如何編寫創建方法?泛型類啓動
public class Lib<V extends Base> {
private HashMap<Integer, V> map = new HashMap<Integer, V>();
public V get(int key) {
return map.get(key);
}
public void add(int key, V value) {
map.put(key, value);
}
public void create(int key) {
// V v = new V(); // ?? How to implement this line
// add(key++, v);
}
}
你在做什麼? – aymankoo
這是不可能的, – BlackJoker
(您可能想要刪除該靜態字段。)(編輯:哦,我會做的。) –