- 1、本文档共8页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
java常见类源码和注释
java常见类源码
package java.util;import java.util.function.Predicate;import java.util.stream.Stream;import java.util.stream.StreamSupport;public interface CollectionE extends IterableE{/** 返回Collection中元素的个数*/ int size();/** 返回true如果Collection中没有元素 */ boolean isEmpty();/** 返回true如果Collection中包含指定的元素*/ boolean contains(Object o);/** 返回一个迭代器*/ IteratorE iterator();/** 返回包含Collection中所有元素的对象数组*/ Object[] toArray();/** 返回数组*/ T T[] toArray(T[] a);/** 向Collection中添加元素,如何添加成功则返回true,否则返回false*/ boolean add(E e);/** 从Collection中删除指定的元素*/ boolean remove(Object o);/** 如果Collection中包含指定Collection中的全部元素则返回true,否则返回false*/ boolean containsAll(Collection? c);/** 如果成功将指定Collection中的元素全部添加到Collection中则返回true,否则返回false*/ boolean addAll(Collection? c);/** 如果成功将Collection中被包含在指定Collection中的元素删除则返回true,否则返回false*/ boolean removeAll(Collection? c);/** Removes all of the elements of this collection that satisfy the given predicate. Errors or runtime exceptions thrown during iteration or by the predicate are relayed to the caller.*/ default boolean removeIf(Predicate? super E filter){ Objects.requireNonNull(filter); boolean removed = false; final IteratorE each = iterator(); while(each.hasNext()){ if(filter.test(each.next())){ each.remove(); removed = true; } } return removed; }/** 如果成功删除Collection中不被包含在指定Collection的元素则返回true,否则返回false*/ boolean retainAll(Collection? c);/** 删除Collection中所有的元素*/ void clear();/** 判断Collection和指定的对象是否相等,相等则返回true,否则返回false*/ boolean equals(Objects o);/** 获取Collection的散列代码值*/ int hashCode();/** 返回一个Spliterator类型的对象 */ @Override default SpliteratorE spliterator(){ return Spliterator.spliterator(this, 0); }/** 返回一个Stream类型的对象*/ default StreamE stream(){ return Str
文档评论(0)