码迷,mamicode.com
首页 > 其他好文 > 详细

List || Lists

时间:2019-11-12 14:44:49      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:ace   指定元素   inf   validate   并且   compareto   asList   date()   array   

初始化:

List<int> list = Lists.newArrayList();

初始化一个SIZE为1的列表

List<int> list = Lists.newArrayList(1);

初始化:

List<int> list = Arrays.asList();

初始化,并且将元素 1 放入列表中

List<int> list = Arrays.asList(1);

 

 

、、、、、、、、、、List 中按照对象指定元素倒序排列、、、、、、、、、、、、、、、、、、、、、、、

Collections.sort(respList, new Comparator<CoreOrdInfo>() {
@Override
public int compare(CoreOrdInfo o1, CoreOrdInfo o2) {
int def = new BigDecimal(o2.getValidateDate().replace("-", "")).compareTo(new BigDecimal(o1.getValidateDate().replace("-", "")));
if(def > 0) {
return 1;
}else if(def < 0){
return -1;
}
return 0;
}
});

List || Lists

标签:ace   指定元素   inf   validate   并且   compareto   asList   date()   array   

原文地址:https://www.cnblogs.com/hanwuxing/p/11841726.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!