首页 > 代码库 > 获取List集合中最大值的方法

获取List集合中最大值的方法

     List ll = new ArrayList();
        ll.add(new BigDecimal(1));
        ll.add(new BigDecimal(4.99));
        ll.add(new BigDecimal(5));
        System.out.println("最大值: " + Collections.max(ll));
        System.out.println("最小值: " + Collections.min(ll));

 

获取List集合中最大值的方法