Java 实例 - 查找 List 中的最大最小值
Java 教程
· 2019-02-11 18:29:20
以下实例演示了如何使用 Collections 类的 max() 和 min() 方法来获取List中最大最小值:
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 教程 文章: https://codercto.com/courses/l/12.html
SCWCD Exam Study Kit Second Edition
Hanumant Deshmukh、Jignesh Malavia、Matthew Scarpino / Manning Publications / 2005-05-20 / USD 49.95
Aimed at helping Java developers, Servlet/JSP developers, and J2EE developers pass the Sun Certified Web Component Developer Exam (SCWCD 310-081), this study guide covers all aspects of the Servlet an......一起来看看 《SCWCD Exam Study Kit Second Edition》 这本书的介绍吧!