final double weight;
finally { try { fis.close(); } catch (IOException e) { e.printStackTrace(); } }
class Person2{ protected void finalize() throws Throwable{ System.out.println("即將被銷燬!"); //建議啓動垃圾回收器(啓動概率變大) System.gc(); } }