可变参数:将要操作的元素作为参数传递,隐式将参数封装为数组
public static void main(String[] args) {
show(1,2);
show();
show1("java",1,2,3); //顺序不能变
}
public static void show(int... arr) {
System.out.println(arr.length); //数组长度
}
public static void show1(String str,int... arr) {
System.out.println(arr.length);
System.out.println(str.length());
}
时间: 2024-10-17 14:22:48