VOOZH about

URL: https://www.javacodegeeks.com/tag/java-8

⇱ Java 8 Archives - Java Code Geeks


  • Core Java👁 Image
    Eleftheria DrosopoulouOctober 22nd, 2025
    0 489

    The Power of Java Stream API

    Java 8 introduced the Stream API, and it fundamentally changed how we work with collections. Instead of writing verbose loops…

    Read More »
  • Core Java👁 Image
    Yatin BatraSeptember 15th, 2025
    0 593

    Function pointer style in Java

    In languages like C and C++, function pointers allow direct reference to a function, enabling callbacks, event handling, and flexible…

    Read More »
  • Core Java👁 Image
    Yatin BatraSeptember 1st, 2025
    0 658

    Working with Time Using Java Instant and Long

    Working with timestamps in Java usually involves a choice between high-level types (like Instant) and low-level numeric representations (like long…

    Read More »
  • Core Java👁 Image
    Bhagvan KommadiSeptember 20th, 2024
    0 2,815

    Java Flatten 2D array Into 1D Array

    Arrays are the most basic data structures in any language. Although we don’t work on them directly in most cases,…

    Read More »
  • Core Java👁 Image
    Eleftheria DrosopoulouAugust 9th, 2024
    0 1,250

    Optimizing Data Filtering with Java 8 Predicates

    Java 8 introduced a powerful functional interface called Predicate that revolutionized data filtering. By providing a concise and expressive way…

    Read More »
  • Core Java👁 Image
    Yatin BatraAugust 5th, 2024
    0 2,497

    Guide to CompletableFuture join() vs get()

    Java’s CompletableFuture is a powerful tool for asynchronous programming, offering various methods to handle and manipulate future tasks. Among these…

    Read More »
  • Core Java👁 Image
    Yatin BatraJuly 9th, 2024
    0 574

    Conversion of InputStream to Stream in Java

    In this article, we will explore different approaches for InputStream to Stream conversion in Java. 1. Introduction In Java, InputStream…

    Read More »
  • Core Java👁 Image
    Omozegie AziegbeJuly 3rd, 2024
    0 538

    Using Java 8 Optionals: Perform Action Only If All Are Present

    Java’s Optional class provides a container object which may or may not contain a non-null value. This is useful for…

    Read More »
  • Core Java👁 Image
    Omozegie AziegbeJune 21st, 2024
    0 683

    Implement Elvis Operator in Java 8

    In Java 8, the Elvis operator (often written as ?: in Groovy and Kotlin) is not available as a built-in…

    Read More »
  • 1
  • 2
  • 3
  • »
  • 10
  • 20
  • ...
  • Last
Back to top button
Close