자바 에서 어떻게 한 그룹의 대상 을 하나의 속성 값 에 따라 정렬 합 니까?

734 단어 자바
저 는 List < Operation > ops 가 있 습 니 다. 그 중에서 모든 Operation 대상 은 int 의 속성 을 startTime 이 라 고 합 니 다. startTime 의 값 에 따라 ops 안의 대상 을 어떻게 작은 것 에서 큰 것 으로 정렬 합 니까?
  ,         ,  :
public class ComparatorImpl implements Comparator<Student> {
	public int compare(Student s1,Student s2) {
		int age1 = s1.getAge();
		int age2 = s2.getAge();
		if(age1>age2){
			return 1;
		}else if(age1<age2){
			return -1;
		}else{
			return 0;
		}
	}
}
       Student  Operation,   age  startTime,  
2)                :
Comparator comp = new ComparatorImpl();
Collections.sort(ops, comp);

            int    ;

    Comparator      ,         Operation  Comparable    compareTo      ,     API,       Hi ,  !

좋은 웹페이지 즐겨찾기