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

返回上一级

使用 Collections 类的 max() 和 min() 方法来获取 List 中最大最小值

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));
   }
}

编译运行以上 Java 代码,输出结果如下

[one, Two, three, Four, five, six, one, three, Four]
最大值: three
最小值: Four

返回上一级

Java 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.