JDK源码之AbstractCollection
摘要:public abstract class AbstractCollection implements Collection { /** * Sole constructor. (For invocation by subclass constructors, typically * implicit.) */ protected Abstract...
阅读全文
JDK源码之List
摘要:List<E> extends Collection<E> 1. Query Operation: int size(); boolean isEmpty(); boolean contains(Object o); Iterator<E> iterator(); Object[] toArray(
阅读全文
JDK源码之Collection
摘要:Collection<E> 继承 Iterable<E>, 其中有方法iterator()1. Query Operations: int size(); boolean isEmpty(); boolean contains(Object o); Iterator<E> iterator(); O
阅读全文
迭代器模式 (Iterator)
摘要:迭代器模式(Iterator), Provide a way to access the elements of an aggregate object sequentially without exposing its underlying representation. (它提供一各方法访问一个
阅读全文
Maven parent and aggregate pom structure
摘要:4.0.0 buildaggregate-ide parent pom com.test buildaggregate-ide 1.0.0 pom UTF-8 1.0.0-SANPSHOT ...
阅读全文