The Artima Developer Community
Sponsored Link

Legacy Java Answers Forum
February 2001

Advertisement

Advertisement

This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.

Message:

no difference

Posted by siva on February 26, 2001 at 9:45 PM

there is no difference between these two calls.
System.gc() will get the the current runtime and call gc()on that.
so runtime.gc() is indirectly called by System.gc().
the code will be like

class System{
.......
gc(){
getruntime().gc();
}
}





Replies:

Sponsored Links



Google
  Web Artima.com   
Copyright © 1996-2009 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use - Advertise with Us