티스토리 뷰
읽기전용으로 List를 생성함. List에 modify 가 일어나면 UnsupportedOperationException 이 발생
List<?> list = new anyList<>(); // any list (ArrayList, LinkedList other..)
list.add(any);
List<?> readOnlyList = java.util.Collections.unmodifiableList(list);
readOnlyList.get(index); // OK
readOnlyList.set(index, any); // throw UnsupportedOperationException
readOnlyList.add(any); // throw UnsupportedOperationException
readOnlyList.remove(any); // throw UnsupportedOperationException
readOnlyList.addAll(any); // throw UnsupportedOperationException
readOnlyList.remove(any); // throw UnsupportedOperationException
readOnlyList.clear(); // throw UnsupportedOperationException
List<?> readOnlySubLIst = readOnlyList.subList(fromIndex, toIndex); // Read only sublist
마찬가지로, java.util.Collections 의 함수를 이용하여 읽기전용 Set, 일기전용 Map을 생성할 수 있다.
Set<?> readOnlySet = java.util.Collections.unmodifiableSet(any set);
Map<key, ?> readOnlyMap = java.util.Collections.unmodifiableMap(any map);
[작성] devbible.tistory.com
'Development' 카테고리의 다른 글
[MFC] CString int double 형변환 (0) | 2018.07.15 |
---|---|
[Maven] invalid LOC header (bad signature) (0) | 2018.05.10 |
[Build] 빌드시 EXE 에 DLL 포함 시키기 (0) | 2017.09.19 |
[Nuget] json.net 설치불가 (0) | 2017.09.19 |
[Java] PKCS7Padding NoSuchAlgorithmException (0) | 2017.09.07 |
- Total
- Today
- Yesterday