Lambda expressions in Java 8 explained with code samples
You Java 8 introduced a new feature called lambda expressions. In this blog post, I will be explaining lambda expressions […]
You Java 8 introduced a new feature called lambda expressions. In this blog post, I will be explaining lambda expressions […]
Java 8 introduced the Stream API. The Stream API along with lambda expressions can be used to perform bulk operations […]
Polymorphism is the process where the same action can be performed in a number of different ways. Java supports 2 […]
A very common interview question is to ask a candidate to explain how Java is platform independent. So let me […]
Java 8 introduced a lot of new features like functional interfaces, lambda expressions, etc. These provide a totally new way […]
One of the new features of Java 9 is the Java 9 Collection factory methods. These allow you to directly […]
Hibernate provides several methods to save or modify the data into a database table. Two such methods are save and […]
Java 8 introduced the concept of functional interfaces. In this blog post, I will be explaining what a Java 8 […]
Just like default methods, Java 8 also supports static methods in interfaces. In this blog post, I will be explaining […]