This post originated from an RSS feed registered with Java Buzz
by Peter Williams.
Original Post: Why Java is Not My Favorite Language â Reason #73
Feed Title: Peter Williams' Weblog
Feed URL: http://pezra.barelyenough.org/blog/category/technology/software/java/feed
Feed Description: Random thoughts about Java programming.
The garbage collector is not observable.
Every non-trivial application I have worked on, regardless of language, has had memory leaks. Even in garbage collected environments memory leaks happen. Given that, why would you design a GC’d language without providing observation hooks into the garbage collector? With Java your only, standard, option is ‘-verbose:gc’ [...]