欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java查找 List 中的最大最小值实例演示

程序员文章站 2024-03-01 09:28: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

希望本篇文章对您有所帮助