Why do many Collection classes in Java extend the abstract class and implement the interface as well?

Viewed 6515

Why do many Collection classes in Java extend the Abstract class and also implement the interface (which is also implemented by the given abstract class)?

For example, class HashSet extends AbstractSet and also implements Set, but AbstractSet already implements Set.

10 Answers
Related