News

In a previous blog posting , I listed some "everyday problems" Java developers will often face and included some ideas and links related to addressing these issues. One of the focal points of that ...
Jarminator is an easy tool to use, but can be a very powerful tool when the Java developer needs to determine classpath conflicts involving insufficient or too many class definitions. Dustin Marx ...
After compiling the source code (a .java file), the compiler generates intermediate object code called bytecode which is a .class file. Bytecode is not the same as machine code. Rather, it is a binary ...
What is the single responsibility principle? The single responsibility principle in Java demands that a class serves a single, clear purpose. Any attempt to add peripheral functionality to a ...