News

With the Extension Pack for Java, VS Code makes a highly capable Java IDE and formidable competitor to Eclipse, NetBeans, and IntelliJ IDEA.
Java is an object-oriented language and so it surprises me when I don’t see objects used more often in Java code for organizing parameters AND return values in a nice package.
Parameter names remains an ongoing concern. "Best" is if the Java code is built with javac -parameters, which allows class-parse to extract parameter names, and everything is good. Unfortunately, that ...