Hacker News new | ask | show | jobs
by crickey 1035 days ago
So the garbage collected language is written in a garbage collected language? How does that effect the system?
1 comments

Lead dev here. A significant portion of the JDK and the JVM is written in Java. There is much that happens in the JVM were gc is a good thing. Classes are constantly being instantiated and then discarded. Having those discarded classes GC'd is a benefit indeed.