Collections.min()和Collections.max()的使用
生活随笔
收集整理的這篇文章主要介紹了
Collections.min()和Collections.max()的使用
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
取集合中的最小值
Collections.min();
取集合中的最大值
Collections.max();
public class TestCollectionMinMax {public static void main(String[] args) {List<Integer> list = new ArrayList<>();list.add(3);list.add(7);list.add(9);list.add(1);list.add(0);Integer min = Collections.min(list);System.out.println("最小值" + min);Integer max = Collections.max(list);System.out.println("最大值" + max);} }總結
以上是生活随笔為你收集整理的Collections.min()和Collections.max()的使用的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【BZOJ1976】[BeiJing20
- 下一篇: metasfresh 大型java开源制