자바 가 List 를 정렬 하 는 두 가지 실현 방법
자바.util 패키지 의 List 인 터 페 이 스 는 Collection 인 터 페 이 스 를 계승 하여 대상 집합 을 저장 하기 때문에 이 대상 들 을 정렬 할 때 대상 류 가 같은 대상 의 비 교 를 실현 하거나 비교 기 를 통 해 비교 순 위 를 매 긴 다.
학생 실체 류 는 이름과 연령 속성 을 포함 하고 비교 할 때 먼저 이름 의 오름차 순 으로 정렬 하 며 이름 이 같 으 면 나이 의 오름차 순 으로 정렬 합 니 다.
첫 번 째:실체 류 자체 비교
(comparable 인터페이스 구현:
public interface Comparable<T>
한 가지 방법 으로 설명 합 니 다.public int compareTo(T o);
예제 코드:
public class Student implements Comparable<Student>{
private String name;
private int age;
public Student() {
super();
// TODO Auto-generated constructor stub
}
public Student(String name, int age) {
super();
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
@Override
public int compareTo(Student o) {
// TODO Auto-generated method stub
int flag = this.name.compareTo(o.name);
if(flag == 0) {
flag = this.age - o.age;
}
return flag;
}
}
그 다음 에 List 류 의sort(Comparator<? super E> c)
방법 이나java.util.Collections
도구 류 의sort(List<T> list)
(사실은 한 마디:list.sort(null);
를 이용 하여 순 서 를 매 긴 다.
List<Student> students = new ArrayList<Student>();
students.add(new Student("a",10));
students.add(new Student("b",12));
students.add(new Student("b",11));
students.add(new Student("ac",20));
students.sort(null);
//Collections.sort(students);
결과:
a 10
ac 20
b 11
b 12
두 번 째:비교 기 를 통 해 정렬 합 니 다.예제 코드:
public class Student {
private String name;
private int age;
public Student() {
super();
// TODO Auto-generated constructor stub
}
public Student(String name, int age) {
super();
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
비교 기java.util.Comparator
류 는 하나의 인터페이스public interface Comparator<T>
이 고int compare(T o1, T o2);
등 방법 을 포함한다.우리 의 비교 기 는 이 인 터 페 이 스 를 실현 하고 실현 해 야 한다
compare
방법:
private class StudentComparator implements Comparator<Student> {
@Override
public int compare(Student o1, Student o2) {
// TODO Auto-generated method stub
int flag = o1.getName().compareTo(o2.getName());
if(flag == 0) {
flag = o1.getAge() - o2.getAge();
}
return flag;
}
}
비교 할 때 Listsort(Comparator<? super E> c)
방법(또는java.util.Collections
도구 류sort(List<T> list, Comparator<? super T> c)
방법)을 이용 하여 정렬 할 수 있다.
List<Student> students = new ArrayList<Student>();
students.add(new Student("a",10));
students.add(new Student("b",12));
students.add(new Student("b",11));
students.add(new Student("ac",20));
Test t = new Test();
students.sort(t.new StudentComparator());
//Collections.sort(students, t.new StudentComparator());
for(Student student : students) {
System.out.println(student.getName()+" "+student.getAge());
}
결 과 는 첫 번 째 방법 과 같다.
a 10
ac 20
b 11
b 12
총결산이상 은 자바 에서 List 를 정렬 하 는 모든 내용 에 관 한 것 입 니 다.본 고의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 면 댓 글 을 남 겨 주 십시오.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.