首页 > 代码库 > Java 泛型

Java 泛型

泛型的擦除:

class Bag<T> extends LinkedList<T>{};private Bag<Integer>[] adj;adj = (Bag<Integer>[])new Bag[V];

  

Java 泛型