package Testat1.Aufgabe2; import java.time.LocalDate; public class Teacher extends Person{ protected String fach; public Teacher(LocalDate dateOfEm, String name, int age, double size, String fach) { super(dateOfEm, name, age, size); this.fach = fach; } public String toString() { return super.toString() + ", fach" + fach; } }