News

A class implements an interface by appending Java’s implements keyword followed by a comma-separated list of interface names to the class header, and by coding each interface method in the class.
There are numerous new classes, enums, methods, and interfaces being added to JDK 7 that may not get significant coverage in the blogs and articles on Java 7. In this post, I list and describe ...
A public method should never be called by another public method within the same class hierarchy. It should only be called by other classes via the classes' public interface. Class calls might not be ...