반응형
질문
How to sort a list of objects by the alphabetical order of one of its properties (Not the name but the actual value the property holds)?
객체 목록을 그 속성의 알파벳 순서에 따라 정렬하는 방법(이름이 아니라 속성이 실제로 보유한 값)은 무엇인가요?
답변
List.sort
에 비교 함수를 전달할 수 있습니다. (자세히 보기)
someObjects.sort((a, b) => a.someProperty.compareTo(b.someProperty));
반응형
댓글