JAVA 集合---collection定义的需方法

Posted 行尸走肉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA 集合---collection定义的需方法相关的知识,希望对你有一定的参考价值。

 

引用自 JAVA SE API

boolean add(E e)
Ensures that this collection contains the specified element (optional operation).
boolean addAll(Collection<? extends E> c)
Adds all of the elements in the specified collection to this collection (optional operation).
void clear()
Removes all of the elements from this collection (optional operation).
boolean contains(Object o)
Returns true if this collection contains the specified element.
boolean containsAll(Collection<?> c)
Returns true if this collection contains all of the elements in the specified collection.
boolean isEmpty()
Returns true if this collection contains no elements.
abstract Iterator<E> iterator()
Returns an iterator over the elements contained in this collection.
boolean remove(Object o)
Removes a single instance of the specified element from this collection, if it is present (optional operation).
boolean removeAll(Collection<?> c)
Removes all of this collection‘s elements that are also contained in the specified collection (optional operation).
boolean retainAll(Collection<?> c)
Retains only the elements in this collection that are contained in the specified collection (optional operation).
abstract int size()
Returns the number of elements in this collection.
Object[] toArray()
Returns an array containing all of the elements in this collection.
<T> T[] toArray(T[] a)
Returns an array containing all of the elements in this collection; the runtime type of the returned array is that of the specified array.
String toString()
Returns a string representation of this collection.

以上是关于JAVA 集合---collection定义的需方法的主要内容,如果未能解决你的问题,请参考以下文章

Java——Collection集合的常规用法

Java Review (二十集合-----Collection 接口)

Java Review (二十集合-----Collection 接口)

JAVA中Collection和Collections的区别

Java——Collection集合

Java 集合学习笔记:Collection