java基础
Posted connie313
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java基础相关的知识,希望对你有一定的参考价值。
1. arraylist soring
1) Collections.sort(al);
2)
public void stackSorting(String stk) {
// write your code here
ArrayList<Integer> aa = new ArrayList<Integer>();
aa.sort(new Comparator<Integer>(){
@Override
public int compare(int arg0, int arg1){
return aa.get(arg0).compareTo(aa.get(arg1));
}
});
}
}
class SortByAge implements Comparator {
public int compare(Object o1, Object o2) {
Student s1 = (Student) o1;
Student s2 = (Student) o2;
return s1.getAge().compareTo(s2.getAge());
// if (s1.getAge() > s2.getAge())
// return 1;
// return -1;
}
}
以上是关于java基础的主要内容,如果未能解决你的问题,请参考以下文章