我已经阅读了文档,但在这里看不到我在做什么错...
目标是包含ItemIF的通用集合类Wlist。
java.util.TreeMap的Java源使用:

public V put(K key, V value) {
  Comparable<? super K> k = (Comparable<? super K>) key;
  cmp = k.compareTo(t.key);


我希望通过使用下面的代码来避免转换,但是
当我使用-Xlint:unchecked进行编译时,收到警告“ unchecked call”。
有什么建议吗?

interface ItemIF<TP> {
  int compareItem( TP vv);
} // end interface ItemIF


class Wlist<TP extends ItemIF> {
TP coreItem;
void insert( TP item) {
  // *** Following line gets: warning: [unchecked] unchecked call   ***
  // *** to compareItem(TP) as a member of the raw type ItemIF      ***
  int icomp = coreItem.compareItem( item);
}
} // end class


class Item implements ItemIF<Item> {
String stg;
public Item( String stg) {
  this.stg = stg;
}
public int compareItem( Item vv) {
  return stg.compareTo( vv.stg);
}
} // end class Item


class Testit {
public static void main( String[] args) {
  Wlist<Item> bt = new Wlist<Item>();
  bt.insert( new Item("alpha"));
}
} // end class Testit

最佳答案

尝试

class Wlist<TP extends ItemIF<TP>>


否则,您将ItemIF用作原始类型,并向您发出原始类型警告。

08-03 13:05