public void setT(T t) {
this.t = t;
}
public DemoTest(T t)
{
this.setT(t);
}
public void toSting() {
System.out.println(this.t);
}
}
public class Demo6 {
public static void main(String[] args) {
DemoTest<Integer> d1 = new DemoTest<Integer>(55);
DemoTest<Integer> d2 = new DemoTest<Integer>(77);
//调用泛型方法 泛型参数为:DemoTest类
add(d1, d2);
//调用返回数组的泛型方法
Integer[] is = args1(2,5,8,9);
for (int i : is) {
System.out.print(i + "\t");
}