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
- 김장훈
- 김장훈의who
- 민동현의토요명화
- CDMA
- 그녀가말했다
- ETF
- 퀄컴
- 차트쇼쇼쇼
- SWT
- USIM
- 사요
- 라디오
- 자바
- "명탐정 코난"
- VoIP
- Wibro
- 유희열의라디오천국
- EV-DO Rev. B
- HSDPA
- 한국의 기획자들
- 민동현
- 공정위
- brew
- 페이스북
- 위피
- 모던음악만만세
- Java
- itmusic
- 러시아
- 이지형
Archives
- Today
- Total
04-10 22:15
목록enum (1)
zyint's blog
Java 5.0 Enum 사용
enum Java 1.5 has built-in support for enumerated types. Prior to that you had to kludge them in some way with static final ints (which were not typesafe) or with Objects which would not work in switch statements. Don't confuse enum with the Enumeration interface, an almost obsolete way of iterating over Collections, replaced by Iterator. Java 1.5 enums are references to a fixed set of Objects t..
예전글들
2007. 2. 27. 11:26