zur vorherigen Seite   zum Inhaltsverzeichnis   zur nächsten Seite

Antwort:

Siehe unten.

Die vervollständigte Book-Klasse

public class Book extends Goods implements Taxable
{
  protected String author;

  public Book(String des, double pr, String auth)
  {
    super(des, pr);
    author  = auth;
  }

  public String toString()
  {
    return super.toString() +
      "Autor: " + author ;
  }
  // die implementierte Schnittstelle
  public double calculateTax()
  {
    return price * TAXRATE;
  }
}

FRAGE 12:

Ist der Steuersatz für Book der gleiche wie für Toy?

zur vorherigen Seite   zum Inhaltsverzeichnis   zur nächsten Seite