RosettaCodeData/Task/Memory-allocation/Java/memory-allocation-2.java

8 lines
180 B
Java
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
public class Blah{
//...other methods/data members...
protected void finalize() throws Throwable{
//Finalization code here
}
//...other methods/data members...
}