Underscore is a ‘KEYWORD’ now since Java 9

Underscore is a ‘KEYWORD’ now since Java 9

Since Java 9, the purpose of using ‘Underscore’ has been changed. With any version before Java 9, It can be used to create a variable or as an identifier. But, NO MORE. In Java 9, ‘Underscore’ is a keyword. In this article, we are going to see...
Try-With-Resources Improvement in Java 9

Try-With-Resources Improvement in Java 9

In this article, we are going to discuss about the improvement made in ‘Try-With-Resources’ feature in the Java 9 Release. But, in order to understand the change being made, we need to know first what actually ‘try-with-resources’ feature is....
Diamond Operator Enhancement in Java 9

Diamond Operator Enhancement in Java 9

In this post, we will discus the enhancement being made in Diamond operator in Java 9 release. Check out: Iterate / ofNullable operations in Java 9 Stream Diamond Operator Enhancement in Java 9...!!! Click To Tweet In this article, we are going to cover below points:...
@Deprecated Annotation Enhancement in Java 9

@Deprecated Annotation Enhancement in Java 9

This article will shed some light onto the enhancement being made in the @Deprecated annotation in Java 9 release. Let me start with giving you some background about Deprecated interface. It isn’t new at all in the history of Java. It was introduced in Java 5....