16 lines
332 B
Java
16 lines
332 B
Java
|
package VL08.Aufgabe04.PersonenDH;
|
||
|
|
||
|
public class Mitarbeiter extends Person {
|
||
|
private String activity;
|
||
|
|
||
|
public Mitarbeiter(String name, int age, String activity) {
|
||
|
super(name, age);
|
||
|
this.activity = activity;
|
||
|
}
|
||
|
|
||
|
public void print() {
|
||
|
super.print();
|
||
|
System.out.printf("Tätigkeit: %s\n", this.activity);
|
||
|
}
|
||
|
}
|