Home Java Example Java Io Code for Garbage Collection



Code for Garbage Collection
Posted on: March 20, 2008 at 12:00 AM
In this section, you will learn how to force a garbage collector to work by creating many objects.

Code for Garbage Collection

     

In this section, you will learn how to force a garbage collector to work by creating many objects.

Description of program:

The following code of program will help you in forcing the garbage collection. First of all we have created an object for the garbage collector to perform some operation. Then we have used the System.gc(); method to force the garbage collection on that object. Then we have used the System.currentTimeMillis(); method to show the time take by the garbage collector.

import java.util.Vector;

public class GarbageCollector{
  public static void main(String[] args) {
  int SIZE = 200;
  StringBuffer s;
  for (int i = 0; i < SIZE; i++) {
  }
  System.out.println("Garbage Collection started explicitly.");
  long time = System.currentTimeMillis();
  System.gc();
  System.out.println("It took " (System.currentTimeMillis()-time" ms");
  }
}

Output of the program:

C:\unique>javac GarbageCollector.java

C:\unique>java GarbageCollector
Garbage Collection started explicitly.
It took 782 ms

Download this example.

 

Related Tags for Code for Garbage Collection:
cormformtimescriptobjectioobjectshelpmethodsedsystemipcollectionthisoperacreateshowforworkprogramtolearnramcigcshdescriptioneareildessectionliusepeimmanfirstcincecurrentinrmforcemntjoperationesemallagercmehowobjprocreatingsystorssoctorcreatedcolbagatanyratiokisirhaimellcollectforcingfolloweaarcodcodecollectwingttscrssririprenthshoavstarbatihatctsctogagarbagemanyjeprmiodeonomogrolo


More Tutorials from this section

Ask Questions?    Discuss: Code for Garbage Collection   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.