本帖最后由 sofeel 于 2015-2-26 14:28 编辑
- package replay;
- public class Add {
- /**
- * 用可变参数,来简化方法重载。
- *
- * 改写add方法
- * 传多少个参数都行,传数组也行
- *
- */
- public static void main(String[] args) {
- System.out.println(add(11,22));
- System.out.println(add(11,22,33));
- System.out.println(add(11,22,33,44));
- System.out.println(add(11,22,33,44,55));
- }
-
- public static int add(int...x){//此处x代表:所有参数构成的数组
- int sum=0;
- for(int i=0;i<x.length;i++)
- sum+=x[i];
- return sum;
- }
- }
复制代码 |