Aller au contenu principal

Description du document

A functional approach to Java

augmenting object-oriented code with functional principles

Éditeur
Sebastopol, CA : O'Reilly, cop 2023

Liste des exemplaires

BU Belle Beille Zone calme 1
Cote : 62 250 JAV WEI 2023
Disponibilité Prêt Nombre
Disponible Pret Normal 1
Sujet(s)
Functional programming (Computer science) Java (Computer program language) Java (langage de programmation) Programmation fonctionnelle (informatique)
Description
1 vol. (xx-382 p.) : ill., couv. ill. en coul. ; 24 cm
Note
index
Note de contenu
Part 1. Functional basics. An introduction to functional programming Functional Java Functional interfaces of the JDK Part 2. A functional approach. Immutability Working with records Data processing with streams Working with streams Parallel data processing with streams Handling null with optionals Functional exception handling Lazy evaluation Recursion Aynchronous tasks Functional design patterns A functional approach to Java
Langue
anglais
ISBN
978-1-09-810992-9

Java developers usually tackel the complexity of software development throught object-oriented programming (OOP). But not every problem is a good match for OOP. The functional programming (FP) paradigm offers you another approach to solving problems, and Java provies easy-to-grasp FP tools such as lambda expressions and streams. If you're interested in applying FP concepts to your Java code, this book is for you. Author Ben Weidig highlights different aspects of functional programming and shows you how to incorporate them into your code without going "fully functional." You'll learn how, when, and why to use FP concepts such as immutability and pure functions to write more concise, reasonable, and future-proof code. Many developers seek to expand their horizons by using OOP and FP together. It's no longer either-or; it's both