Java 9 Articles

Underscore_Keyword_Java9_Featured_Image_Techndeck

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 how it's usage changed...
Try_With_Resources_Enhancement_Java9_Featured_Image_Techndeck

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. So, let's go ahead and...
Collection_Factory_Methods_Java9_Featured_Image_Techndeck

New & Simpler way of creating Collections in Java 9

In this article, we are going to discuss about static factory methods that Java 9 brought to the Collections library. These new methods are added to List, Set and Map to create immutable collection instances. These methods are also referred to as convenience factory...
Diamond_Operator_Enhacement_Java9_Featured_Image_Techndeck

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 In this article, we are going to cover below...