码迷,mamicode.com
首页 > 其他好文 > 详细

可变参数

时间:2014-11-06 19:51:40      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   使用   for   sp   div   log   

1、格式

    类型... 变量名

2、使用

    1*在方法体内,形参可变参数,被当做数组使用

    2*实际参数的个数将是形参可变参数,在方法体内使用数组的长度

    3*如果实际参数是数组,数组将会被打散

    4*可变参数只能放在最后面(如果还有其他参数),并且只能有一个可变参数

Demo

public static void main(String[] args) {
        GetSum(1,2,3,4);
        GetSum(1);
        Integer[] ins={1,2,3,5};
        GetSum(ins);
    }
     
    public  static void GetSum(Integer...ins)
    {
        int sum=0;
        for (int i = 0; i < ins.length; i++) {
            sum+=ins[i];
        }
        System.out.println(sum);
    }

 

可变参数

标签:style   blog   color   ar   使用   for   sp   div   log   

原文地址:http://www.cnblogs.com/liuwt365/p/4079392.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!