以下實例示範如何使用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)); } }
List 中的輸出結果為:
[one, Two, three, Four, five, six, one, three, Four] 最大值: three 最小值: Four
以上就是Java 實例- 尋找以上程式碼中的最大最小的內容,更多相關內容請關注PHP中文網(www.php.cn)!