1.可变个数形参格式:数据类型 ... 变量名
1 public void method(String ... strs){
2 //方法体
3 }
2.重载
public void method(String ... strs){}
和
public void method(String[] strs){}
不能构成重载
3.使用
public void method(String ... strs){
//遍历方式和数组相同
for(int i =0; i<strs.length;i++){
//.........
}
}
4.规范
可变个数形参必须放在末尾
可变个数形参在一个方法中只能声明一个