次の例は、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 の例です。リスト内の最大値と最小値の内容については、PHP 中国語 Web サイト (www.php.cn) を参照してください。