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

PPTX
Java 8 Streams And Common Operations By Harmeet Singh(Taara)
PPTX
Java 8 lambda
PPTX
Java 8 Lambda and Streams
PDF
Java 8 Lambda Expressions & Streams
PPTX
Java 8 presentation
PDF
Lambda Expressions in Java
PPTX
Introduction of Java 8 with emphasis on Lambda Expressions and Streams
PPTX
Functional programming with Java 8
Java 8 Streams And Common Operations By Harmeet Singh(Taara)
Java 8 lambda
Java 8 Lambda and Streams
Java 8 Lambda Expressions & Streams
Java 8 presentation
Lambda Expressions in Java
Introduction of Java 8 with emphasis on Lambda Expressions and Streams
Functional programming with Java 8

What's hot (20)

PDF
ODP
Introduction to Java 8
PPTX
The Dark Side Of Lambda Expressions in Java 8
PPTX
Lambda Expressions in Java 8
PPTX
java 8 new features
PDF
Java 8 by example!
PPTX
Java 8 - Features Overview
PDF
Programming with Lambda Expressions in Java
PPTX
Java 8 Feature Preview
PDF
Java 8 features
PPTX
Java 8 Features
PDF
Java8 features
PDF
Java 8 features
PPT
Major Java 8 features
PPTX
Java 8 new features
PDF
Functional Java 8 in everyday life
PDF
Java 8: the good parts!
PPTX
Java 8 Lambda Expressions
PDF
Streams in Java 8
PDF
Java 8 - Project Lambda
Introduction to Java 8
The Dark Side Of Lambda Expressions in Java 8
Lambda Expressions in Java 8
java 8 new features
Java 8 by example!
Java 8 - Features Overview
Programming with Lambda Expressions in Java
Java 8 Feature Preview
Java 8 features
Java 8 Features
Java8 features
Java 8 features
Major Java 8 features
Java 8 new features
Functional Java 8 in everyday life
Java 8: the good parts!
Java 8 Lambda Expressions
Streams in Java 8
Java 8 - Project Lambda
Ad

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

PDF
Lambdas in Java 8
PPTX
PDF
Java 8-revealed
PPTX
Lambdas, Collections Framework, Stream API
PPTX
Lambda expressions java8 - yousry
PDF
Lambda Functions in Java 8
PPTX
Java 8 - An Overview
PDF
Unit-3.pptx.pdf java api knowledge apiii
PPTX
Insight into java 1.8, OOP VS FP
PPTX
Java 8 features
PPTX
Week-1..................................
PPTX
java150929145120-lva1-app6892 (2).pptx
PPTX
Functional Programming In Jdk8
PPTX
Java 8 lambdas expressions
PPT
14274730 (1).ppt
PPTX
Introduction to functional programming with java 8
PDF
Java 8 Interview Questions and Answers PDF By ScholarHat.pdf
PPTX
Lambda Expressions Java 8 Features usage
PPTX
Java 8 Intro - Core Features
PDF
Presentation lambda calculus in java
Lambdas in Java 8
Java 8-revealed
Lambdas, Collections Framework, Stream API
Lambda expressions java8 - yousry
Lambda Functions in Java 8
Java 8 - An Overview
Unit-3.pptx.pdf java api knowledge apiii
Insight into java 1.8, OOP VS FP
Java 8 features
Week-1..................................
java150929145120-lva1-app6892 (2).pptx
Functional Programming In Jdk8
Java 8 lambdas expressions
14274730 (1).ppt
Introduction to functional programming with java 8
Java 8 Interview Questions and Answers PDF By ScholarHat.pdf
Lambda Expressions Java 8 Features usage
Java 8 Intro - Core Features
Presentation lambda calculus in java
Ad

Recently uploaded (20)

PPTX
CroxyProxy Instagram Access id login.pptx
PDF
DevOps & Developer Experience Summer BBQ
PDF
[발표본] 너의 과제는 클라우드에 있어_KTDS_김동현_20250524.pdf
PPTX
Telecom Fraud Prevention Guide | Hyperlink InfoSystem
PDF
REPORT: Heating appliances market in Poland 2024
PDF
Sensors and Actuators in IoT Systems using pdf
PDF
CIFDAQ's Market Wrap: Ethereum Leads, Bitcoin Lags, Institutions Shift
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Reimagining Insurance: Connected Data for Confident Decisions.pdf
PDF
GamePlan Trading System Review: Professional Trader's Honest Take
PDF
NewMind AI Monthly Chronicles - July 2025
PPTX
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
madgavkar20181017ppt McKinsey Presentation.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...
PDF
Chapter 2 Digital Image Fundamentals.pdf
CroxyProxy Instagram Access id login.pptx
DevOps & Developer Experience Summer BBQ
[발표본] 너의 과제는 클라우드에 있어_KTDS_김동현_20250524.pdf
Telecom Fraud Prevention Guide | Hyperlink InfoSystem
REPORT: Heating appliances market in Poland 2024
Sensors and Actuators in IoT Systems using pdf
CIFDAQ's Market Wrap: Ethereum Leads, Bitcoin Lags, Institutions Shift
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Reimagining Insurance: Connected Data for Confident Decisions.pdf
GamePlan Trading System Review: Professional Trader's Honest Take
NewMind AI Monthly Chronicles - July 2025
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Understanding_Digital_Forensics_Presentation.pptx
madgavkar20181017ppt McKinsey Presentation.pdf
Review of recent advances in non-invasive hemoglobin estimation
NewMind AI Weekly Chronicles - August'25 Week I
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...
Chapter 2 Digital Image Fundamentals.pdf

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.