Java를 사용하여 목록을 정렬하는 방법

다음 메소드를 호출하십시오.

java.util.Collections.sort(myList);

이 튜토리얼에서는 Collection 라이브러리와 함께 java를 사용하여 목록을 정렬하는 방법을 보여줍니다.

먼저, ArrayList 타입의 List가 생성됩니다. 임의의 순서로 값이 목록에 추가됩니다. 그런 다음 collections 클래스의 sort 메서드가 호출됩니다.

마지막으로 목록의 내용이 출력에 표시됩니다.

다음 java 파일을 만듭니다.

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class ListSort {
    public static void main(String[] argv) {
        // Define the list
        List<String> myList = new ArrayList();
        // Add the values
        myList.add("San Francisco");
        myList.add("New York");
        myList.add("Paris");
        myList.add("London");
        // Sort the list
        Collections.sort(myList);
        // Loop on the list
        for (String current : myList) {
            // Write the element in the output
            System.out.println(current);
        }
    }
}

출력은 다음과 같습니다.

London
New York
Paris
San Francisco

참고 문헌 :

Java 6 Collections

최근 댓글