标签:常见问题 springmvc sort 对象 排序 his compareto mvc 方法
一、springMVC aop
二、bean 的生命周期
三、arrayList写一个队列
四、二叉树查找
五、要实现对象的排序
类要实现Comparable接口,重写compareTo方法
1 @Override 2 public int compareTo(User o) { 3 if(this.salary > o.salary) return 1; 4 else if(this.salary < o.salary) return -1; 5 else return 0; 6 7 // 也可以这么写 8 // return Double.compare(this.salary, o.salary); 9 10 }
主类里面加上:
Arrays.sort(userArrary);
就可以实现排序了。
六、JVM
七、锁和同步问题
标签:常见问题 springmvc sort 对象 排序 his compareto mvc 方法
原文地址:https://www.cnblogs.com/shirley18/p/9675870.html