Java 10 Performance Improvements 1. Overview In this quick tutorial, we will discuss the performance improvements that come along with the latest Java 10 release. These improvements apply to all applications running under JDK 10, with no need for any code changes to leverage them. 2. Parallel Full GC for G1… Continue Reading java-10-performance-improvements

Java 10 LocalVariable Type-Inference 1. Overview One of the most visible enhancements in JDK 10 is type inference of local variables with initializers. This tutorial provides the details of this feature with examples. 2. Introduction Until Java 9, we had to mention the type of the local variable explicitly and… Continue Reading java-10-local-variable-type-inference