码迷,mamicode.com
首页 > 其他好文 > 详细

泛型方法

时间:2019-01-20 23:36:23      阅读:213      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!