标签:method eth code get out tcl main gets print
public class MethodsTest { public static <T> void f(T x) { System.out.println(x.getClass().getSimpleName()); } public static void main(String[] args) { f(new String("1")); f(new Integer(1)); f(new Date()); } }
结果为: String
Integer
Date
可以看到,无需在类名称后面加泛型<T>就可以直接在类中使用泛型.
挺实用的一个技巧.
标签:method eth code get out tcl main gets print
原文地址:https://www.cnblogs.com/lishuaiqi/p/10296507.html