package andmed; public class AsukohtDestruktoriga { public int x, y; public AsukohtDestruktoriga(int ux, int uy){ x=ux; y=uy; } @Override public String toString(){ return "("+x+", "+y+")"; } @Override protected void finalize() throws Throwable{ System.out.println("Kaotatakse "+toString()); } }