Posts related to tag: keyword


Java Records: Simplify Data Classes

The record keyword was introduced in Java 16. It is a feature that simplifies the creation of classes for data […] Continue reading »

Java throw and throws Keywords

In this blog post, we will explore the purpose and usage of Java’s throw and throws keywords. Java provides two […] Continue reading »

Limitations of the var Keyword in Java

In this article, we will explore the limitations of the 'var' keyword in Java. While the 'var' keyword brings several […] Continue reading »

Java var Keyword: Enhancing Code Readability and Flexibility

With the release of Java 10, a 'var' keyword was introduced. The 'var' keyword allows developers to declare local variables […] Continue reading »