Java查List 中的最大最小值 Java查找 List 中的最大最小值实例演示
人气:0想了解Java查找 List 中的最大最小值实例演示的相关内容吗,在本文为您仔细讲解Java查List 中的最大最小值的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Java,List最大最小值,List最大值,List最小值,下面大家一起来学习吧。
以下实例演示了如何使用 Collections 类的 max() 和 min() 方法来获取List中最大最小值:
/* author by w3cschool.cc Main.java */ import java.util.*; public class Main { public static void main(String[] args) { List list = Arrays.asList("one Two three Four five six one three Four".split(" ")); System.out.println(list); System.out.println("最大值: " + Collections.max(list)); System.out.println("最小值: " + Collections.min(list)); } }
以上代码运行输出结果为:
[one, Two, three, Four, five, six, one, three, Four] 最大值: three 最小值: Four
希望本篇文章对您有所帮助
加载全部内容