java使用hutool工具取short数组中的最大值

2024-11-03 19:46:18

1、在你的项目中引入hutool的jar包

java使用hutool工具取short数组中的最大值

2、接着创建一个short类型的数组并添加一些元素

java使用hutool工具取short数组中的最大值

3、public static short max(short... numberArray)//查看一下max方法的源码

java使用hutool工具取short数组中的最大值

4、short min = ArrayUtil.max(s);//调用方法获取shor数组中的最大值

java使用hutool工具取short数组中的最大值

5、运行程序查看得到的结果

java使用hutool工具取short数组中的最大值
猜你喜欢