Java Exp 4

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

//WRITE A JAVA PROGRAM TO ILLUSTRATE GARBAGE COLLECTOR WITH

FINIALISE METHOD
classDest

publicstaticvoidmain(String[]args)

Dest de=newDest(); de.finialise();

de = null;

System.gc();

System.out.println("inside the main() method");

protected void finialise()

System.out.println("object is destroyed by the Garbage collector");

Output:-

You might also like