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