반응형
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- OS
- 법
- 용어
- Programming
- 방송통신대학교
- 인간과 교육
- EJB
- Book
- architecture
- Java
- 데이터베이스
- 교육
- Computer
- 영화
- Algorithms
- 알고리즘
- 컴퓨터과학과
- Software
- 백과사전
- 컴퓨터
- Database
- 영어
- Compiler
- ISBN:89-20-34523-6
- 컴파일러
- 광고
- 운영체제
- 책
- 프로그래밍언어
Archives
- Today
- Total
Digital Intelligence
Collection 본문
반응형
ArrayList
TreeSet : Keeps the elements sorted and prevents duplicates
HashMap : Let's you store and access elements as name/value pairs
LinkedList : Designed to give better performance when you insert or delete elements from the middle of the collection
HashSet : Prevents duplicates in the collection, and given an element, can find that element in the collection quickly.
LinkedHashMap : Like a regular HashMap, except it can remember the order in which elements(name/value pairs) were inserted, or it can be configured to remember the order in which elements were last accessed
public <T extends Animal> void takeThing(ArrayList<T> list)
same
public void takeThing(ArrayList<? extends Animal> list)
Related Links
http://java.sun.com/docs/books/tutorial/collections/index.html
References
Head First Java, 2nd Edition. p.533
반응형
'B1:기초 Basement' 카테고리의 다른 글
Eclipse 3.2 단축키 (0) | 2006.10.07 |
---|---|
마틴 파울러의 책들(Martin Fowler's Books) (0) | 2006.10.06 |
이면우 교수의 월간조선 기고문 (0) | 2006.10.05 |
객체 직렬화(Object Serialization) (0) | 2006.10.04 |
Wrapping a primitive (0) | 2006.10.03 |