摘要:
本人对泛型的使用不是很多,了解也不是很深,在此记录一些自己的认识。 1 public class FanXing2 { 2 3 /** 4 * @param args 5 */ 6 public static void main(String[] args) { 7 // TODO Auto-generated method stub 8 Fx<String> fx = new Fx<String>("简单的泛型列子"); 9 fx.showType();10 }11 }12 13 class Fx... 阅读全文