Java 示例 - 从列表中查找最小值和最大值
-
问题描述
如何找到列表的最小值和最大值? -
解决方案
以下示例使用 min & max 方法来查找列表的最小值和最大值。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("max: " + Collections.max(list)); System.out.println("min: " + Collections.min(list)); } }
-
结果
上面的代码示例将产生以下结果。[one, Two, three, Four, five, six, one, three, Four] max: three min: Four