View on GitHub

我的学习笔记

好记性不如烂笔头

8.3 泛型方法

class ArrayAlg{
    public static <T> T getMiddle(T... a){  //这个方法是在普通类而非泛型类中定义的,但这是个泛型方法
        return a[a.length/2];
    }
}

返回