/**************可变参数的使用*****************/
//注意:可变参数一定要放在参数列表的最后,使用时是作为数组来进行操作
// public static void main(String[] args) {
// method("总和为:",10,50,20);
// method("总和为:",10,50,20,20);
// method("总和为:",10,50,20,20,60);
// }
// //int... numbers就是可变参数
// public static void method(String str,int... numbers){
// int total = 0;
// for (int num : numbers) {
// total += num;
// }
// System.out.println(str+total);
// }
原文地址:http://www.cnblogs.com/danmao/p/3825266.html