About 193 results
Open links in new tab
  1. Java 1.8 Features - BenchResources.Net

    Java 1.8 Features Below are the list of topics for Java 1.8 features : Lambda Expression Functional Interface Anonymous Inner class v/s Lambda Expression Default and static …

  2. Java 8 – Functional Interface with examples - BenchResources.Net

    Apr 18, 2020 · In this article, we will discuss about new features introduced in Java 1.8 version i.e.; Functional Interface

  3. Java 8 – Reverse complete String using Stream and Collectors

    May 22, 2022 · In this article, we will learn how to reverse entire/complete String in Java 1.8 version using Stream and Collectors

  4. Java 8 – Find Largest number in an Arrays or List or Stream

    In one of the previous article, already discussed to find largest number/element in an Arrays or List without using Java 8 Stream, read Java – Find Largest number in an Arrays or List ?

  5. Java 8 – Lambda Expression - BenchResources.Net

    Apr 17, 2020 · Unlike other new features introduced by Java ecosystem in the past till Java 1.7 version, this is not new feature to the programming world. Rather it is old feature which is …

  6. Java - BenchResources.Net

    Jul 26, 2023 · In this article, we will discuss Optional class in detail and understand why it is needed/introduced in Java 1.8 version and how to avoid/handle (or Read More

  7. Java 8 – Iterating List from JDK 1.0 to Java 1.8 version in 7 ways

    Jan 26, 2022 · In one of the previous article, we already discussed about various ways to iterate through ArrayList – 5 ways but here we are going to categorize different ways to iterarte …

  8. Java 8 – Count and print number of repeated character …

    May 21, 2022 · Note:- Same example is implemented using below Java 1.8 version and without Stream, check Java – Count and print number of repeated character occurrences in a String

  9. Java 8 - Predicate Functional Interface - BenchResources.Net

    Apr 22, 2020 · In this article, we will discuss one of the widely used pre-defined Functional Interface in Java 1.8 version for conditional checks i.e.; Predicate Functional Interface

  10. Java 8 – Sorting List of primitive, String & Custom Objects

    Mar 5, 2021 · This example has list of String elements we are sorting in natural & reverse order using Comparator.naturalOrder () i.e.; in alphabetical order and Comparator.reverseOrder () …