-1

I had certain issues while understanding the Internal working of garbage collection. How does internal garbage collection work in java using mark sweep algorithm?

Basically what i wanted to understand are the two points.

1. How Garbage Collection differs in the three big JVMs?

2. Performance Tuning in JVMs when performing Garbage Collection?

PS - I did have a good workout on Google, it did show with a lot of textual stuff which I found difficult to understand. But I am looking for a more animated and good explanation.

sTg
  • 4,313
  • 16
  • 68
  • 115

1 Answers1

0

Garbage collection implementations are complicated, change relatively often, and sometimes differ even within the same release. The following answer gives a reading list which should introduce you to the concepts, after which you would be able to understand the answers to your question:

https://stackoverflow.com/a/1319064/138304

Community
  • 1
  • 1
Sam Harwell
  • 97,721
  • 20
  • 209
  • 280