/**
* 泛型方法单限定
*
*
* @param
*/
class Work3implements Generic2 {
public static void main(String[] args) {
Work3 work3 =new Work3<>();
work3.test(123);//限制泛型方法为只能接受Integer类型的参数,对应的限制代码:
work3.test2("234");//不受限制
}
public void test(T t) {
System.out.println(t.getClass().getName());
}
public void test2(T t) {
System.out.println(t.getClass().getName());
}
}