ArrayList public class MyArrayList<AnyType> implements Iterable<AnyType> { /** * Construct an empty ArrayList. */ public MyArrayList() { doClear(); } /** * Returns the number of items in this collection. * * @return the number of items in this collection. */ ...