Java查找 List 中的最大最小值实例演示
程序员文章站
2024-02-28 12:07:10
以下实例演示了如何使用 collections 类的 max() 和 min() 方法来获取list中最大最小值:
/*
author by w3cschoo...
以下实例演示了如何使用 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代码实现