Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Session
- Proxy
- object
- Keep-Alive
- Transfer-Encoding
- Reference
- chunked
- urlclassloader
- singleton
- reflection
- InvocationHandler
- unmodifiableList
- toString
- Java
- clone
- cookie
- http/1.1
- http
- getRequestURI
- Content-Length
Archives
- Today
- Total
목록unmodifiableList (1)
pungjoo
작성중 - unmodifiable
0. 들어가면서 Collections class에는 unmodifiable류의 method가 존재합니다. 즉, 특정상황에 return되는 객체의 특정 method는 사용하지 못 하도록 강제하고 싶을 때 사용합니다. 1. 준비 운동 package info.yeonwoo.edu; import java.util.ArrayList; import java.util.List; public class WarmingUp { private static List getData() { ArrayList data = new ArrayList(); data.add("pungjoo"); data.add("siyeon"); data.add("siwoo"); return data; } public static void main(St..
JAVA
2010. 1. 11. 19:13