How to do memory management in memory managed environment?
Is it just Garbage Collection or something else too?
In Java, GC is done periodically by VM without explicit call for garbage collection. I know that we can use System.gc() to request a garbage collection, but it is not guaranteed that garbage collection will take place.
So, is there any other way for memory management in memory managed environment?