以下实例演示了如何使用 collections 类的 max() 和 min() 方法来获取list中最大最小值:
/*
author by w3cschool.cc
main.java
*/
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));
}
}
以上代码运行输出结果为:
[one, two, three, four, five, six, one, three, four]
最大值: three
最小值: four
以上就是java 实例 - 查找 list 中的最大最小值的内容。