码迷,mamicode.com
首页 > 编程语言 > 详细

java可变参数

时间:2018-01-22 19:24:24      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:sim   nbsp   red   ide   color   可变   system   div   type   

 

    //int(type) followed ... (three dot‘s) is syntax of a variable argument.
    public static int sum(int... numbers) {
        //inside the method a variable argument is similar to an array.
        // number can be treated as if it is declared as int[] numbers;
        int sum = 0;
        for (int number : numbers) {
            sum += number;
        }
        return sum;
    }

    public static void main(String[] args) {
        // 3 Arguments
        System.out.println(sum(1, 4, 5)); // 10

        // 4 Arguments
        System.out.println(sum(1, 4, 5, 20));//30
        // 0 Arguments
        System.out.println(sum()); // 0

    }

 

java可变参数

标签:sim   nbsp   red   ide   color   可变   system   div   type   

原文地址:https://www.cnblogs.com/chenglc/p/8330054.html

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