加载中...

泛型

  /**
  测试泛型
  */
  public class TestGeneric {
  public static void main(String[] args) {
      
      MyCollection<String> mc = new MyCollection<String>();
      
      mc.set("老王", 0);
      
      String b = mc.get(0);
      
      System.out.println(b);
        }
}

class MyCollection<E> {    //容器
    Object[] objs = new Object[5];
  
  public void set(E e, int index) {
      objs[index] = e;
  }
  
  public E get(int index) {
      return (E)objs[index];
  }
}
posted @ 2021-08-14 11:03  nongeason  阅读(29)  评论(0)    收藏  举报