一、自定义泛型
package fangxing;/*** 自定义泛型* 标识符可以随便写,这里用 T 表示*/public class GenericTest02<T> {public void doSome(T o){System.out.println(o);}public static void main(String[] args) {GenericTest02<String> gt = new GenericTest02<>();//类型不匹配//gt.doSome(100);gt.doSome("aad");GenericTest02<Integer> gt2 = new GenericTest02<>();gt2.doSome(001);}}
