Java 实例 - 查找 List 中的最大最小值

以下实例演示了如何使用 Collections 类的 max() 和 min() 方法来获取List中最大最小值:

Main.java 文件

  1. import java.util.*;
  2. public class Main {
  3. public static void main(String[] args) {
  4. List list = Arrays.asList("one Two three Four five six one three Four".split(" "));
  5. System.out.println(list);
  6. System.out.println("最大值: " + Collections.max(list));
  7. System.out.println("最小值: " + Collections.min(list));
  8. }
  9. }

以上代码运行输出结果为:

  1. [one, Two, three, Four, five, six, one, three, Four]
  2. 最大值: three
  3. 最小值: Four