ArrayList
-
java arraylist class 객체 오름차순, 내림차순 정렬안드로이드 2016. 2. 2. 13:41
출처 : http://brad2014.tistory.com/212 1. 정렬하고자 하는 객체에 Comparable 인터페이스를 구현한다.2. Collections.sort 함수로 정렬한다. public class SwitchInfo implements Comparable { private int id;private double power;public SwitchInfo(int id ){this.id = id;} public double getPower() {return power;} public void setPower(double power) {this.power = power;} @Overridepublic int compareTo(SwitchInfo si) {if (this.power > si.po..