News

In Cay Horstmann 's recent blog posting Are You Using Static Import? he asks the question, "Have you switched from System.out to out with a static import?" I found this to be an interesting ...
In Java, you can have a section of code inside a class definition that looks like this:code: static { // statements go here }and the statements will be executed when the class is loaded (sort of ...