SlideShare a Scribd company logo
Functional Programming
In JAVA
By Harmeet Singh(Taara)
(Java EE Developer)
Email: harmeetsingh.0013@gmail.com
Blog: http://harmeetsingh13.blogspot.in
Skype: harmeetsingh0013
Contact: Via Email or Skype
➢ Introduction
➢ Functional Programming.
➢ Single Abstract Method(SAM).
➢ Functional Interface.
➢ Declare Lambda Expressions.
➢ Code Refactor Using Lambda Expression.
➢ Predefined Functional Interfaces in Java 8.
➢ User Defined Functional Interface in Java 8.
➢ Type Inference.
➢ Translation Of Lambda Expressions.
➢ Runtime Translation Strategies.
➢ Leftover: The Things We Didn’t Cover.
Contents
Acknowledgement
❖ Thanks To My Parents.
❖ Thanks To All Who Support Me or Not.
❖ Dedicated To My Teacher “Mr. Kapil Sakhuja”.
Introduction
In Java 8, the functional programming is the important
evolution in Object Oriented Programming world of Java.
Now, Java use lambdas, Simple Abstract Method (SAM)
etc for allow functional programming in Object Oriented
World.
There are so many new features are added in Java 8 like
Streams, Default methods etc. But Today’s we only
discuss about “Functional Programming In Java”.
What is Functional Programming ?
Immutable Object: In Object Oriented and Functional
Programming, An Immutable Object is an object whose
state cannot be modified after it is created.
Functional Programming: Functional Programming
involves writing code that does not change state. One of
the key feature of Functional Programming is the First-
Class Functions.
Single Abstract Method(SAM)
Interfaces have one Abstract Method are called SAM.
In Java there are lots of interfaces which only have one
abstract method(by default interface have abstract
method) like Runnable, Closeable etc.
These Single Abstract Method(SAM) Interfaces are also
called “Functional Interface”.
Functional Interface
Functional Interface: In Java 8, If Functional Interface
have more than one methods, one is different and rest of
the methods have same signature of Object class
methods. These types of Interfaces also called Functional
Interfaces like Comparator etc in Java.
If interface have one abstract method and one or more
than one Default and Static methods are also called
Functional Interface.
Declare Lambda Expression
Syntax :
lambda = ArgList “->” Body
ArgList = Identifier && Body = Expression
Examples:
(int x, int y) -> { return x+y }
(x, y) -? { return x+y }
(x) -> { return x+1 }
() -> { System.out.println(“Hello World”) }
Code Refactoring Using Lambda
Predefined Functional Interfaces in Java 8
In Java 8, There are lots of Predefined Functional
Interface, But today’s we only cover some important
Functional interfaces are :-
Predefined Functional Interfaces in Java 8
Predicate<T>: Represents a predicate (boolean-value-
function) of one argument.
Example:
Predefined Functional Interfaces in Java 8
Consumer<T>: Represents an operation that accept a
single input argument and returns no result.
Example:
Predefined Functional Interfaces in Java 8
Function<T, R>: Represents a function that accept a one
argument and produces a result.
Example:
Predefined Functional Interfaces in Java 8
Supplier<T>: Represents a supplier of results
Example:
Predefined Functional Interfaces in Java 8
UnaryOperator<T>: Represents an operations on a single
operands that produces a result of the same type as its
operand.
Example:
Predefined Functional Interfaces in Java 8
BinaryOperator<T, T>: Represents an operations upon
two operands of same type, producing a result of the
same type as the operands.
Example:
User Defined Functional Interfaces In Java 8
IN Java 8, it is also possible to create our custom user
define Functional Interface with the help of
“@FunctionalInterface” annotation. Our Functional
Interfaces also have default methods and static methods.
@FunctionalInterface: @FunctionalInterface annotation
indicates that the type declaration is intended to be a
functional interface, as defined by Java Language
Specification.
User Defined Functional Interfaces In Java 8
Example:
Type Inference
Type Inference is not the new topic in Java. In Java 7 we
create the Collections object with the help of Diamond
Operator(<>) like :
List<Integer> list = new ArrayList<>();
Under the hood of this code, Compiler use the “Type
Inference” technique. In this compiler pick the type
information from the left side of type declaration.
Type Inference
For Lambda expressions in Java 8, compiler use the same
“Type Inference” technique with some improvements.
Examples:
Predicate<Integer> predicate = (x) -> x > 5; //code
compile
Predicate predicate = (x) -> x > 5; // Compile time error
// Predicate is a raw type. References to generic type
//Predicate<T> should be parameterized
Translation Of Lambda Expression
Translate the lambda expression to bytecode is major
challenge for Java, because the important thing is to
maintain backward compatibility in bytecode. There are
so many challenges were faced for conversion like:
1. How to deal with Functional Interfaces?
2. For Lambdas use Inner classes?
3. Maintain Lambda information at runtime? etc.
Translation Of Lambda Expression
There are so many things are used and maintain for
lambdas in JVM, But for JVM the lambdas are not a new,
Because some languages are already use JVM for Runtime
Environment that have “Lambda Expression” like
Groovy, Scala, Clojure etc.
Today we only discuss the brief steps for translate Lambda
Expression after compilation.
Translation Of Lambda Expression
Followings are the Steps:
➔ Read “Lambda Expression” and desugars the lambda
body into a method whose argument list and return
type match that of “Lambda Expression”.
Example :
list.forEach( s -> { System.out.println(s); } );
//before compile
static void lambda$1(String s) { //After compile
System.out.println(s);
}
Translation Of Lambda Expression
Followings are the Steps:
➔ At the point at which the “Lambda Expression” would
be captured, it generates an “invokedynamic”
CallSite like :
list.forEach( s -> { System.out.println(s); } );
list.forEach( [lambda for lambda$1 as Block] );
Translation Of Lambda Expression
Followings are the Steps:
➔ This CallSite is called Lambda Factory for Given
Lambda.
➔ The Dynamic Arguments to the lambda factory are the
values captured from lexical scope.
➔ The Bootstrap Method for “Lambda Factory” is called
“Lambda Metafactory”.
Runtime Translation Strategies
➔ Generate Inner Classes Dynamically.
➔ Generate per-SAM wrapper class
◆ One per SAM type, not per lambda expression
◆ Use method handles for invocation.
◆ Use ClassValue to cache wrapper for SAM.
➔ Use Dynamic Proxies.
➔ Use MethodHandleProxies.asInterfaceInstance.
➔ Use VM private API to build object from scratch.
Leftover: The Important Topics We Didn’t Cover
1. Lexical Scoping
2. Method References
3. Method Handlers
4. Default Methods and Static methods in Interface
5. Streams in Java 8
6. Java 8 Date API
7. invokedynamic
8. Concurrency in lambda
9. Advanced Collections
10. Design and Architecture Principles
References:
❖ Special Thanks to Richard Warburton for “Java 8
lambdas”.
❖ “Implementing Lambda Expressions in Java” by Brian
Goetz.
❖ “Lambda Expressions in Java” by Simon Ritter.
❖ Oracle Java 8 Api Docs.
❖ Translation Of Lambda Expression by OpenJDK.(http:
//cr.openjdk.java.net/~briangoetz/lambda/lambda-
translation.html)
And many more like, DZone, StackOverflow etc.

More Related Content

What's hot (20)

PDF
Java8
Felipe Mamud
 
ODP
Introduction to Java 8
Knoldus Inc.
 
PPTX
The Dark Side Of Lambda Expressions in Java 8
Takipi
 
PPTX
Lambda Expressions in Java 8
icarter09
 
PPTX
java 8 new features
Rohit Verma
 
PDF
Java 8 by example!
Mark Harrison
 
PPTX
Java 8 - Features Overview
Sergii Stets
 
PDF
Programming with Lambda Expressions in Java
langer4711
 
PPTX
Java 8 Feature Preview
Jim Bethancourt
 
PDF
Java 8 features
NexThoughts Technologies
 
PPTX
Java 8 Features
Leninkumar Koppoju
 
PDF
Java8 features
Elias Hasnat
 
PDF
Java 8 features
Oleg Tsal-Tsalko
 
PPT
Major Java 8 features
Sanjoy Kumar Roy
 
PPTX
Java 8 new features
Aniket Thakur
 
PDF
Functional Java 8 in everyday life
Andrea Iacono
 
PDF
Java 8: the good parts!
Andrzej Grzesik
 
PPTX
Java 8 Lambda Expressions
Hyderabad Scalability Meetup
 
PDF
Streams in Java 8
Tobias Coetzee
 
PDF
Java 8 - Project Lambda
Rahman USTA
 
Introduction to Java 8
Knoldus Inc.
 
The Dark Side Of Lambda Expressions in Java 8
Takipi
 
Lambda Expressions in Java 8
icarter09
 
java 8 new features
Rohit Verma
 
Java 8 by example!
Mark Harrison
 
Java 8 - Features Overview
Sergii Stets
 
Programming with Lambda Expressions in Java
langer4711
 
Java 8 Feature Preview
Jim Bethancourt
 
Java 8 features
NexThoughts Technologies
 
Java 8 Features
Leninkumar Koppoju
 
Java8 features
Elias Hasnat
 
Java 8 features
Oleg Tsal-Tsalko
 
Major Java 8 features
Sanjoy Kumar Roy
 
Java 8 new features
Aniket Thakur
 
Functional Java 8 in everyday life
Andrea Iacono
 
Java 8: the good parts!
Andrzej Grzesik
 
Java 8 Lambda Expressions
Hyderabad Scalability Meetup
 
Streams in Java 8
Tobias Coetzee
 
Java 8 - Project Lambda
Rahman USTA
 

Similar to Functional programming in java 8 by harmeet singh (20)

DOCX
Colloquium Report
Mohammad Faizan
 
PPTX
Java 8 - An Overview
Indrajit Das
 
PPTX
Insight into java 1.8, OOP VS FP
Syed Awais Mazhar Bukhari
 
PDF
Java 8-revealed
Hamed Hatami
 
PPT
Lambdas
malliksunkara
 
PPTX
Java 8
Sudipta K Paik
 
PPTX
Lambdas and-streams-s ritter-v3
Simon Ritter
 
PDF
Unit-3.pptx.pdf java api knowledge apiii
mpfbaa
 
PPTX
Project Lambda: Functional Programming Constructs in Java - Simon Ritter (Ora...
jaxLondonConference
 
PPTX
Functional Programming In Jdk8
Bansilal Haudakari
 
PDF
Java 8 Interview Questions and Answers PDF By ScholarHat.pdf
Scholarhat
 
PPTX
Eclipse Day India 2015 - Java 8 Overview
Eclipse Day India
 
PPTX
New Features of JAVA SE8
Dinesh Pathak
 
PPTX
Lambda Expressions Java 8 Features usage
AsmaShaikh478737
 
PDF
Lambdas in Java 8
Tobias Coetzee
 
PPTX
Java 8 lambdas expressions
Lars Lemos
 
PPTX
What`s New in Java 8
Mohsen Zainalpour
 
PPTX
New features in jdk8 iti
Ahmed mar3y
 
PPTX
Functional Programming With Lambdas and Streams in JDK8
IndicThreads
 
PPTX
java150929145120-lva1-app6892 (2).pptx
BruceLee275640
 
Colloquium Report
Mohammad Faizan
 
Java 8 - An Overview
Indrajit Das
 
Insight into java 1.8, OOP VS FP
Syed Awais Mazhar Bukhari
 
Java 8-revealed
Hamed Hatami
 
Lambdas
malliksunkara
 
Lambdas and-streams-s ritter-v3
Simon Ritter
 
Unit-3.pptx.pdf java api knowledge apiii
mpfbaa
 
Project Lambda: Functional Programming Constructs in Java - Simon Ritter (Ora...
jaxLondonConference
 
Functional Programming In Jdk8
Bansilal Haudakari
 
Java 8 Interview Questions and Answers PDF By ScholarHat.pdf
Scholarhat
 
Eclipse Day India 2015 - Java 8 Overview
Eclipse Day India
 
New Features of JAVA SE8
Dinesh Pathak
 
Lambda Expressions Java 8 Features usage
AsmaShaikh478737
 
Lambdas in Java 8
Tobias Coetzee
 
Java 8 lambdas expressions
Lars Lemos
 
What`s New in Java 8
Mohsen Zainalpour
 
New features in jdk8 iti
Ahmed mar3y
 
Functional Programming With Lambdas and Streams in JDK8
IndicThreads
 
java150929145120-lva1-app6892 (2).pptx
BruceLee275640
 
Ad

Recently uploaded (20)

PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PDF
IoT-Powered Industrial Transformation – Smart Manufacturing to Connected Heal...
Rejig Digital
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PPTX
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
PDF
July Patch Tuesday
Ivanti
 
PPTX
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
IoT-Powered Industrial Transformation – Smart Manufacturing to Connected Heal...
Rejig Digital
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
July Patch Tuesday
Ivanti
 
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
Ad

Functional programming in java 8 by harmeet singh

  • 1. Functional Programming In JAVA By Harmeet Singh(Taara) (Java EE Developer) Email: [email protected] Blog: http://harmeetsingh13.blogspot.in Skype: harmeetsingh0013 Contact: Via Email or Skype
  • 2. ➢ Introduction ➢ Functional Programming. ➢ Single Abstract Method(SAM). ➢ Functional Interface. ➢ Declare Lambda Expressions. ➢ Code Refactor Using Lambda Expression. ➢ Predefined Functional Interfaces in Java 8. ➢ User Defined Functional Interface in Java 8. ➢ Type Inference. ➢ Translation Of Lambda Expressions. ➢ Runtime Translation Strategies. ➢ Leftover: The Things We Didn’t Cover. Contents
  • 3. Acknowledgement ❖ Thanks To My Parents. ❖ Thanks To All Who Support Me or Not. ❖ Dedicated To My Teacher “Mr. Kapil Sakhuja”.
  • 4. Introduction In Java 8, the functional programming is the important evolution in Object Oriented Programming world of Java. Now, Java use lambdas, Simple Abstract Method (SAM) etc for allow functional programming in Object Oriented World. There are so many new features are added in Java 8 like Streams, Default methods etc. But Today’s we only discuss about “Functional Programming In Java”.
  • 5. What is Functional Programming ? Immutable Object: In Object Oriented and Functional Programming, An Immutable Object is an object whose state cannot be modified after it is created. Functional Programming: Functional Programming involves writing code that does not change state. One of the key feature of Functional Programming is the First- Class Functions.
  • 6. Single Abstract Method(SAM) Interfaces have one Abstract Method are called SAM. In Java there are lots of interfaces which only have one abstract method(by default interface have abstract method) like Runnable, Closeable etc. These Single Abstract Method(SAM) Interfaces are also called “Functional Interface”.
  • 7. Functional Interface Functional Interface: In Java 8, If Functional Interface have more than one methods, one is different and rest of the methods have same signature of Object class methods. These types of Interfaces also called Functional Interfaces like Comparator etc in Java. If interface have one abstract method and one or more than one Default and Static methods are also called Functional Interface.
  • 8. Declare Lambda Expression Syntax : lambda = ArgList “->” Body ArgList = Identifier && Body = Expression Examples: (int x, int y) -> { return x+y } (x, y) -? { return x+y } (x) -> { return x+1 } () -> { System.out.println(“Hello World”) }
  • 10. Predefined Functional Interfaces in Java 8 In Java 8, There are lots of Predefined Functional Interface, But today’s we only cover some important Functional interfaces are :-
  • 11. Predefined Functional Interfaces in Java 8 Predicate<T>: Represents a predicate (boolean-value- function) of one argument. Example:
  • 12. Predefined Functional Interfaces in Java 8 Consumer<T>: Represents an operation that accept a single input argument and returns no result. Example:
  • 13. Predefined Functional Interfaces in Java 8 Function<T, R>: Represents a function that accept a one argument and produces a result. Example:
  • 14. Predefined Functional Interfaces in Java 8 Supplier<T>: Represents a supplier of results Example:
  • 15. Predefined Functional Interfaces in Java 8 UnaryOperator<T>: Represents an operations on a single operands that produces a result of the same type as its operand. Example:
  • 16. Predefined Functional Interfaces in Java 8 BinaryOperator<T, T>: Represents an operations upon two operands of same type, producing a result of the same type as the operands. Example:
  • 17. User Defined Functional Interfaces In Java 8 IN Java 8, it is also possible to create our custom user define Functional Interface with the help of “@FunctionalInterface” annotation. Our Functional Interfaces also have default methods and static methods. @FunctionalInterface: @FunctionalInterface annotation indicates that the type declaration is intended to be a functional interface, as defined by Java Language Specification.
  • 18. User Defined Functional Interfaces In Java 8 Example:
  • 19. Type Inference Type Inference is not the new topic in Java. In Java 7 we create the Collections object with the help of Diamond Operator(<>) like : List<Integer> list = new ArrayList<>(); Under the hood of this code, Compiler use the “Type Inference” technique. In this compiler pick the type information from the left side of type declaration.
  • 20. Type Inference For Lambda expressions in Java 8, compiler use the same “Type Inference” technique with some improvements. Examples: Predicate<Integer> predicate = (x) -> x > 5; //code compile Predicate predicate = (x) -> x > 5; // Compile time error // Predicate is a raw type. References to generic type //Predicate<T> should be parameterized
  • 21. Translation Of Lambda Expression Translate the lambda expression to bytecode is major challenge for Java, because the important thing is to maintain backward compatibility in bytecode. There are so many challenges were faced for conversion like: 1. How to deal with Functional Interfaces? 2. For Lambdas use Inner classes? 3. Maintain Lambda information at runtime? etc.
  • 22. Translation Of Lambda Expression There are so many things are used and maintain for lambdas in JVM, But for JVM the lambdas are not a new, Because some languages are already use JVM for Runtime Environment that have “Lambda Expression” like Groovy, Scala, Clojure etc. Today we only discuss the brief steps for translate Lambda Expression after compilation.
  • 23. Translation Of Lambda Expression Followings are the Steps: ➔ Read “Lambda Expression” and desugars the lambda body into a method whose argument list and return type match that of “Lambda Expression”. Example : list.forEach( s -> { System.out.println(s); } ); //before compile static void lambda$1(String s) { //After compile System.out.println(s); }
  • 24. Translation Of Lambda Expression Followings are the Steps: ➔ At the point at which the “Lambda Expression” would be captured, it generates an “invokedynamic” CallSite like : list.forEach( s -> { System.out.println(s); } ); list.forEach( [lambda for lambda$1 as Block] );
  • 25. Translation Of Lambda Expression Followings are the Steps: ➔ This CallSite is called Lambda Factory for Given Lambda. ➔ The Dynamic Arguments to the lambda factory are the values captured from lexical scope. ➔ The Bootstrap Method for “Lambda Factory” is called “Lambda Metafactory”.
  • 26. Runtime Translation Strategies ➔ Generate Inner Classes Dynamically. ➔ Generate per-SAM wrapper class ◆ One per SAM type, not per lambda expression ◆ Use method handles for invocation. ◆ Use ClassValue to cache wrapper for SAM. ➔ Use Dynamic Proxies. ➔ Use MethodHandleProxies.asInterfaceInstance. ➔ Use VM private API to build object from scratch.
  • 27. Leftover: The Important Topics We Didn’t Cover 1. Lexical Scoping 2. Method References 3. Method Handlers 4. Default Methods and Static methods in Interface 5. Streams in Java 8 6. Java 8 Date API 7. invokedynamic 8. Concurrency in lambda 9. Advanced Collections 10. Design and Architecture Principles
  • 28. References: ❖ Special Thanks to Richard Warburton for “Java 8 lambdas”. ❖ “Implementing Lambda Expressions in Java” by Brian Goetz. ❖ “Lambda Expressions in Java” by Simon Ritter. ❖ Oracle Java 8 Api Docs. ❖ Translation Of Lambda Expression by OpenJDK.(http: //cr.openjdk.java.net/~briangoetz/lambda/lambda- translation.html) And many more like, DZone, StackOverflow etc.