This article provides a summary of the important Java 8 new features. Java 8 new features Java 8 is the newest release of Java and the developer kit is JDK 8. This is a significant upgrade to Java language. 1. Lambda Expressions Lambda expression is a major change in java as it changes …
Continue reading Java 8 new featuresIntroduction

In this article, we will discuss about new features added in Java 8 Interfaces. Default interface methods Prior to Java 8, an Interface could only have public abstract methods. The implementing class for this interface was supposed to provided implementation for each of the abstract methods or declare itself as abstract. With Java 8, …
Continue reading New features in Java 8 interfaces