The Collection Classes in java

The standard collection classes are summarized in the following table: Class Description AbstractCollection Implements most of the Collection interface.     AbstractList Extends AbstractCollection and implements most of the List interface.     AbstractQueue Extends AbstractCollection and implements parts of the Queue interface.     AbstractSequentialList Extends AbstractList for use by a collection that uses … Read more

The Collection Classes in java

The standard collection classes are summarized in the following table Class Description AbstractCollection Implements most of the Collection interface. AbstractList Extends AbstractCollection and implements most of the List interface AbstractQueue Extends AbstractCollection and implements parts of the Queue interface. AbstractSequentialList Extends AbstractList for use by a collection that uses sequential rather than randomaccess of its … Read more