CS202 Java-96
“Implements” in Java
lThe implements keyword allows classes to “derive” from a completely abstract class or to “implement” the code for a pure abstract class
lThe implementation becomes an ordinary class which can be extended in the regular way
lExcept that members must all be defined as public
•interface list { void display(); }
•class ordered_list implements list {
•Public void display();}