1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/* Testauto.java */ public class Testauto { static private int objcnt = 0; public Testauto() { ++objcnt; } public void finalize() { --objcnt; } public static void main(String[] args) { Testauto auto1; Testauto auto2 = new Testauto(); System.out.println( "Anzahl Testauto-Objekte: " + Testauto.objcnt ); } }