sortedbydescending1 [Collection Sort - kotlin] sort(), sortBy(), sortWith() 💡기본 규칙 sort(), sortBy(), sortWith() 는 기존 collection을 수정할 수 있는 메소드이다. sorted(), sortedBy(), sortedWith() 는 기존 collection이 변하지 않는다. 앞에 나온 동사가 수동태가 되면 기존 collection이 변하지 않는다고 보면 될듯! 뒤에 reverse(), reversed(), sortByDescending(), sortedByDescending() 도 모두 같은 규칙 적용! 📆 메소드 정의 sort() - 오름차순 정렬 sortByDescending() - 내림차순 정렬 reverse() - 앞뒤 배열 순서 뒤집기 shuffled() - 랜덤 정렬 Kotlin sort 1. 오름차순 val nums = mutable.. 2023. 11. 30. 이전 1 다음