lambda expressions

What are lambda expressions in java?

Lambda expressions were released with java 8 as one of its main features. It can be considered as the java’s…

add comment

Learn Java: What is Java

What is java? Java is a programming language that was found in 1995 by Sun micro-systems, which was later acquired…

add comment

How to undo a commit in GIT

Committing an unwanted file to the repository is one of the common mistakes made by most of the developers. Let’s…

add comment

7 tips to become a better programmer

Everyone wants to be good at what they do, especially in what you do for a living. It’s not an…

add comment

Enums in java are more useful than you think.

Enums in java is a widely used feature and the common use case of Enum is to use it as…

add comment

Functional interfaces in java

What is a functional interface? Functional interfaces in java is an interface where you have only one abstract method. It…

add comment
java 13

Java 13: What’s new in java 13

java 13 release is just around the corner, and it’s better to look into what are the new features that…

add comment

Preview Language Features in java

In this article i will be discussing the preview features in java Bit of history Java is now releasing a…

add comment

Switching between multiple JDK versions in Windows

As a java developer, sometimes you will have to maintain multiple JDKs in your computer. You will have to switch…

add comment

Default methods in java 8

From Java 8 onward, it’s allowed to have methods in an interface with specifying the type as default. Prior to…

add comment