ArrayList
LinkedList
HashSet
HashMap
Collection集合接口中的方法
add()
iterator()
boolean contains(Object o)
void clear()
boolean isEmpty()
int size()
boolean remove(Object o)
List集合接口中的方法
set()
get()
ListIterator()
Map集合接口中的方法
put()
void clear()
boolean isEmpty()
int size()
void clear()
boolean containsKey(K k)
boolean containsValue(V k)
keySet()
entrySet()
Map集合接口中,子接口Entry
Entry
getKey()
getValue()
setValue() |
|