Immutable Collections는 Collections.sort() 적용이 안 된다. ^^!
한 번 생각하면 당연한 것이다. ImmutableCollections를 정렬한 Collections을 복사해서 사용하자.
List<Integer> sorted = numbers.stream().sorted().collect(Collectors.toList());
// mutable immutable
'TIL' 카테고리의 다른 글
221229 오늘의 삽질 (0) | 2022.12.29 |
---|---|
[C++] 우선순위 큐 오름차순(최소힙) 만들기 (0) | 2022.12.04 |
[C++] string 문자열 split 하는 함수 (0) | 2022.12.02 |
221111 (0) | 2022.11.11 |
221105 오늘의 삽질 (0) | 2022.11.05 |