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
- 김장훈
- 퀄컴
- 모던음악만만세
- SWT
- 자바
- 사요
- 페이스북
- EV-DO Rev. B
- "명탐정 코난"
- 김장훈의who
- 라디오
- HSDPA
- itmusic
- ETF
- 한국의 기획자들
- Wibro
- 공정위
- 차트쇼쇼쇼
- CDMA
- Java
- USIM
- 유희열의라디오천국
- brew
- 민동현
- 그녀가말했다
- VoIP
- 위피
- 민동현의토요명화
- 러시아
- 이지형
Archives
- Today
- Total
04-07 07:49
목록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