第二阶段31--泛型_泛型方法_泛型方法与可变参数

public class MethodGeneric1 {
    public <T> void method(T...args){
        for(T t:args){
            System.out.println(t);
        }
    }
}
public class Test4 {
    public static void main(String[] args) {
        MethodGeneric1 methodGeneric = new MethodGeneric1();
        String[] arr = new String[]{"a","b","c"};
        Integer[] arr2 = new Integer[]{1,2,3};
        methodGeneric.method(arr);
        methodGeneric.method(arr2);
    }
}

 

上一篇:计蒜客:马踏过河卒 (java)


下一篇:从键盘上输入一个日期的年月日,要求通过程序输出输入的日期为当年的第多少天。