IMS-java/Code/Steiner/static_theorie/src/Person.java
2024-10-24 11:05:15 +02:00

13 lines
235 B
Java

public class Person {
static int counter = 0;
String name = "";
public Person(String n) {
this.name = n;
counter++;
}
public static void tuWas() {
System.out.println(" tue etwas");
}
}