List || Lists

Posted hanwuxing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了List || Lists相关的知识,希望对你有一定的参考价值。

初始化:

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的主要内容,如果未能解决你的问题,请参考以下文章

Java list1=list2;list2=null ? list1=list2;list2.clear()?

list.addAll(list1),如果list改变,怎么让list1的值不跟着改变!

如何把两个list放到一个list中,然后在页面能获取到ID

C++ list 容器

一个list怎么添加另一个list中

java中 两个list怎么合并啊?有list,list1,list2。想要list等于list1和list2相加得到的队列怎么写?