微前端架构如何改变企业的开发模式与效率提升
688
2022-10-14
集合框架_可变参数的概
package cn.itcast_03;/* * 可变参数:定义方法的时候不知道该定义多少个参数 * 格式: * 修饰符 返回值类型 方法名(数据类型... 变量名){ * * } * * 注意: * A:这里的变量其实是一个的数组。 * B:如果一个方法有可变参数,并且有多个参数,那么,可变参数肯定是最后一个 */public class ArgsDemo { public static void main(String[] args) { // 2个数据求和 int a = 10; int b = 20; int result = sum(a, b); System.out.println("result:" + result); // 3个数据求和 int c = 30; result = sum(a, b, c); System.out.println("result:" + result); // 4个数据求和 int d = 30; result = sum(a, b, c, d); System.out.println("result:" + result); // 需求:我要写一个求和的功能,到低是几个数据求和呢,我不太清楚,但是我知道我在调用的时候我就知道了。 // 为了解决这个问题,Java就提供了一个东西:可变参数 result = sum(a, b, c, d, 40); System.out.println("result:" + result); result = sum(a, b, c, d, 40, 50); System.out.println("result:" + result); } public static int sum(int b,int... a) { // System.out.println(x); // return 0; int s = 0; for (int x : a) { s += x; } return s; } // public static int sum(int a, int b, int c, int d) { // return a + b + c + d; // } // // public static int sum(int a, int b, int c) { // return a + b + c; // } // // public static int sum(int a, int b) { // return a + b; // }}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~