1 public class Test4_3_5 { 2 public static void main(String[] args) { 3 f(1,2); 4 f(-1,-2,-3,-4); //给参数传值时,实参的个数很灵活 5 f(9,7,6); 6 } 7 public static void f(int ... x) { //x是可变参数的代表,代表若干个int型参数 8 for(int i=0;i<x.length;i++) { //x.length是x代表的参数的个数 9 System.out.println(x[i]); //x[i]是x代表的第i个参数(类似数组) 10 } 11 } 12 }
短小精悍!