package com.test;
/**
* @Author Qianmo
* @Date 2021/8/11 9:21
* @Description: 可变长度参数
*/
public class Test1 {
public static void main(String[] args) {
Integer max = max(1, 2, 3, 4, 5, 6, 7);
System.out.println(max);
System.out.println(max(1));
System.out.println(max(1, 2));
System.out.println(max(4, 6, 1, 3));
}
public static Integer max(Integer ... nums){
int max = nums[0];
for (int i=0;i<nums.length;i++){
if (max<nums[i]){
max=nums[i];
}
}
return max;
}
}
java可变参数实例
最新推荐文章于 2023-10-03 04:02:13 发布
这篇博客展示了如何在Java中使用可变参数(varargs)来创建一个计算一组整数中最大值的方法。在`Test1`类的`main`方法中,演示了`max`方法的不同调用方式,并输出了最大值。`max`方法通过遍历传入的整数数组找到最大值并返回。
摘要由CSDN通过智能技术生成