Runs the garbage collector
Runs the garbage collector
public class SystemExample {
public static void main(String[] args) {
System.gc();
}
}
or
public class SystemExample {
public static void main(String[] args) {
Runtime.getRuntime().gc();
}
}
Tags: java.lang, java.lang.System, Runtime, System, System examples
You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
Leave a Reply