Siehe unten.
Book
-Klassepublic 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; } }
Ist der Steuersatz für Book
der gleiche wie für Toy
?