Java 8 Articles

Java 8 Streams Filter List Example

Java 8 Streams Filter a List Example

In this tutorial, we will see "How to use Streams to Filter a List in Java 8?". We are going to use how Java 8 Streams API can be used to filter an ArrayList. Java 8 streams filter example Check out: ArrayList ListIterator in Java with Examples [bctt tweet="Java 8...
Program to Multiply two matrices - Java 8

Java 8 – Program to Multiply Two Matrices? (Simplest Example)

In  this tutorial, we will see "Program to Multiply two matrices using Java 8 Streams?" program to multiply two matrices using Java 8 Stream [crayon-662d4e24c1a6f288513475/]   Output:...
Find Nth Fibonacci Number in Java 8 - Techndeck

Java – Multiple ways to find Nth Fibonacci Number

In  this tutorial, we will see "Two ways to find Nth Fibonacci Number using Java?"find nth Fibonacci number in java 8 Java 1st method (before JAVA 8): [crayon-662d4e24c1bc1054108512/]  ...
Find First Non-Repeated Character in a String using Java 8 Streams

Java 8 – How to find the First Non-Repeated Character in a String?

In  this tutorial, we will see "How to find the first non-repeated character in a string using Java 8?"find first non repeated character in a string using Java 8 ...