home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / ans / chap1 / exer0113 / StringedInstrument.java
Encoding:
Text File  |  1997-04-19  |  306 b   |  17 lines

  1. abstract class StringedInstrument {
  2.    int numStrings;
  3.    abstract void play();
  4. }
  5.  
  6. final class Violin extends StringedInstrument {
  7.    void play() {
  8.       System.out.println("mmm");
  9.    }
  10. }
  11.  
  12. class Guitar extends StringedInstrument {
  13.    void play() {
  14.       System.out.println("twang");
  15.    }
  16. }
  17.