相关文章推荐
想发财的菠萝  ·  android - ...·  2 年前    · 
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 实例 Java 实例