cherry p
gc() method
1 Answer(s)      a year and 9 months ago
Posted in : Java Interview Questions

what is difference between java.lang.System class gc() method and java.lang.Runtime class gc() method

View Answers

August 17, 2011 at 12:49 PM


Both the methods do the same thing i.e, runs the garbage collector. But there are some differences:

1)System.gc() is a class method where as Runtime.gc() is an instance method.

2) System.gc() method is static so more conveninent to use in comparison to gc() method of Runtime class (Runtime.getRuntime().gc()).









Related Pages:

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.