✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Folgende Klassen sind gegeben:
public class Medium { private String titel; private double wert; private String standort; public Medium(String titel, double wert, String standort) { this.titel = titel; this.wert = wert; this.standort = standort;}
//...
}
public class Buch extends Medium{
private String isbn;
public Buch(String titel, double wert, String standort, String isbn) {
//...STATEMENT HIER EINFÜGEN ...//
this.isbn = isbn;
}
//...
}
Welches Statement muss an der rot markierten Stellen im Konstruktor der Klasse Buch eingefügt werden? Deine Eingabe darf KEINE LEERZEICHEN enthalten!
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!