반응형
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 |
Tags
- Book
- 용어
- 알고리즘
- 광고
- Database
- 컴퓨터과학과
- Programming
- 인간과 교육
- 교육
- architecture
- 영화
- Algorithms
- 프로그래밍언어
- 데이터베이스
- 컴파일러
- Computer
- 영어
- 운영체제
- 컴퓨터
- OS
- Java
- EJB
- 백과사전
- 법
- 방송통신대학교
- Software
- 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 |