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