public class Cat { public static void main(String[] args) { } protected void finalize() throws Throwable { System.out.println("A Cat was destroyed"); }// cat } class Dog { protected void finalize() throws Throwable { System.out.println(""); } }