Tuesday, December 10, 2002 | |
Along similar lines as the Java IAQ, saladwithsteve mentions this wonderful paper from IBM entitled Dispelling Java programming language myths. The article covers a number of interesting and subtle points regarding Java programming. One key point that the article indirectly makes is that Java's garbage collection and strong typing does not excuse lazy programming practices.
Many times I have run into a hunk of Java code that depletes scarce resources-- file descriptors, threads, etc..-- through just plain lazy development practices. The Garbage Collector will clean up after me is not a valid design pattern! |