如何在 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
java_collections.htm
广告