// TestFinalize Example // Test the finalize method. public class TestFinalize { public static void main(String[ ] args) { Person x = new Person("Alice", 'F', 23); System.out.println(x); x = null; System.out.println(x); System.gc( ); } }