PR2/PR2_UIB/Exercises/Testat1/Aufgabe2/Employee.java

18 lines
371 B
Java
Raw Normal View History

2024-04-20 11:25:11 +02:00
package Testat1.Aufgabe2;
import java.time.LocalDate;
public class Employee extends Person{
protected double salary;
public Employee(LocalDate dateOfEm, String name, int age, double size, double salary) {
super(dateOfEm, name, age, size);
this.salary = salary;
}
@Override
public String toString() {
return super.toString() + ", salary= " + salary;
}
}