April 27
Examples from April 27
Today we worked with another large example of Interfaces:
Gender.java Printable.java
Flower.java Student.java
StudentFlowerApp.java Here Gender and
Printable are interfaces.
Flower and Student are classes that implement these interfaces (Flower just
implements Printable; Student does both).
Finally, StudentFlowerApp is an application that makes use of both Student
and Flower in various ways.