public class Person
{
// statischer Datenteil
private static int counter ;
// nichtstatischer Datenteil
private String vor, nach ;
//statischer Konstruktor
static
{
counter=0;
}
// anonymer Konstruktor
{
counter++ ;
}
// Konstruktoren
// ...
// Methoden
// ...
}