News

Use Java assertions to test your assumptions about program correctness and check them in your code.
Need to disassemble a Java class file? Want to look at the bytecode instructions generated from compiling source? These javap tool examples will show you how to use the javap command properly.
Which version of Java should you use in Linux? Learn how to easily switch between different versions with a tutorial from Jack Wallen.
Most new Java developers quickly learn that they should generally compare Java Strings using String.equals(Object) rather than using == . This is emphasized and reinforced to new developers ...
The functional consumer interface is a key part of the Java Streams API. Here is a simple Consumer interface example to show you how to use this Java component.