Lecture 26
15
Interfaces in Collection framework
•Inheritance hierarchy (classes)
• java.lang.Object                       java.util.AbstractMap                        java.util.TreeMap
•TreeMap implements interfaces:
–Cloneable, Map, Serializable, SortedMap
•AbstractMap implements Map
•Map foo = new TreeMap( ) // legal