package Testat1.Aufgabe2; import java.time.LocalDate; public class Student extends Person{ protected String fach; public Student(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; } }