¿¹Á¦
public
class
ClassA {
protected void
finalize()
throws
Throwable {
//...
}
public
void
methodA {
}
¼Ö·ç¼Ç
super.finalize()¸¦ È£ÃâÇϽʽÿÀ.
public
class
ClassA {
protected void
finalize()
throws
Throwable {
super
.finalize();
//...
}
}