Advanced   Java   Services JAVA-Praktikum Back Next Up Home
Ein Counter für die Klasse Person (Lösung)
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
   // ...

}
Valid XHTML 1.0 Strict top Back Next Up Home