SlideShare a Scribd company logo
Functional Programming with 
Jan Köhnlein & Sven Efftinge
Functional programming is like 
describing your problem to a mathematician. 
Imperative programming is like 
giving instructions to an idiot.
Imperative vs Functional 
State Changes vs No State Change 
How? vs What?
2 Important Principles
#1 : No Side-Effects
Haskell is a purely-functional programming language
Most other functional programming languages 
are more relaxed, i.e. non-pure.
Most other functional programming languages 
are more relaxed, i.e. non-pure. 
But still embrace immutability!
Why Immutability? 
Thread-Safety 
Easy to test, construct and use 
Good Map keys and Set members 
Code is easier to read and understand
Java and 
Immutability
The beauty of 
java.lang.String 
Thread-Safety 
Easy to test, construct and use 
Good Map keys and 
Set members 
Code is easier to read 
and understand
"Classes should be immutable 
unless there's a very good reason 
to make them mutable...” 
(Joshua Bloch)
"When you create immutable classes, 
entire categories of problems simply 
disappear.” 
(javapractices.com)
How to build an 
immutable data type in Java? 
make everything final 
create constructor for fields 
implement hashcode 
implement equals
writing Immutable code in Java 
is tedious & error-prone
Immutability in 
final by default 
val vs. var 
immutable collection literals 
everything is an expression 
@Pure 
@Data
First Exercise 
Immutable Data Types
2 Important Principles
#2 : First-Class Functions
#2 : First-Class Functions 
passing functions as arguments 
higher-order functions 
lambdas
An Example
Functional programming with Xtend
@Data class Movie { 
String title 
int year 
double rating 
long numberOfVotes 
ImmutableSet<String> categories 
}
What’s the best drama of the 70ies?
The imperative way
Functional programming with Xtend
Functional programming with Xtend
The functional way
Java 8 
Lambdas
Lambdas
Functional programming with Xtend
Second Exercise 
In The Movies
Use the force, Duke! 
www.xtend-lang.org

More Related Content

What's hot (20)

PDF
Core Java Tutorial
Java2Blog
 
PPT
C++ to java
Ajmal Ak
 
PDF
Swift Tutorial Part 2. The complete guide for Swift programming language
Hossam Ghareeb
 
PDF
Scala the good and bad parts
benewu
 
PPT
Introduction to java
Sujit Majety
 
PPTX
Introduction to functional programming with java 8
JavaBrahman
 
PDF
Swift Programming Language
Cihad Horuzoğlu
 
PPT
00 intro to java
Deia Abdullah
 
PPTX
Advanced Javascript
Dhruvin Shah
 
PPTX
Functional programming in TypeScript
binDebug WorkSpace
 
PDF
Functional programming in scala
Stratio
 
PDF
Functional Programming in Java
Premanand Chandrasekaran
 
PPTX
JavaScript (without DOM)
Piyush Katariya
 
PDF
Kotlin & arrow: the functional way
nluaces
 
PPTX
Functional programming principles and Java 8
Dragos Balan
 
PPTX
JavaScript Basics
Bhanuka Uyanage
 
PPTX
Kotlin L → ∞
Abdellah SELASSI
 
PDF
Eclipse and Java 8 - Eclipse Day India 2013
Noopur Gupta
 
PDF
Clojure presentation
Karthik Raghunahtan
 
PPT
Web development basics (Part-4)
Rajat Pratap Singh
 
Core Java Tutorial
Java2Blog
 
C++ to java
Ajmal Ak
 
Swift Tutorial Part 2. The complete guide for Swift programming language
Hossam Ghareeb
 
Scala the good and bad parts
benewu
 
Introduction to java
Sujit Majety
 
Introduction to functional programming with java 8
JavaBrahman
 
Swift Programming Language
Cihad Horuzoğlu
 
00 intro to java
Deia Abdullah
 
Advanced Javascript
Dhruvin Shah
 
Functional programming in TypeScript
binDebug WorkSpace
 
Functional programming in scala
Stratio
 
Functional Programming in Java
Premanand Chandrasekaran
 
JavaScript (without DOM)
Piyush Katariya
 
Kotlin & arrow: the functional way
nluaces
 
Functional programming principles and Java 8
Dragos Balan
 
JavaScript Basics
Bhanuka Uyanage
 
Kotlin L → ∞
Abdellah SELASSI
 
Eclipse and Java 8 - Eclipse Day India 2013
Noopur Gupta
 
Clojure presentation
Karthik Raghunahtan
 
Web development basics (Part-4)
Rajat Pratap Singh
 

Similar to Functional programming with Xtend (20)

PPTX
Programming picaresque
Bret McGuire
 
PPTX
Introduction to Functional programming
Ny Fanilo Andrianjafy, B.Eng.
 
PDF
Why should a Java programmer shifts towards Functional Programming Paradigm
Tech Triveni
 
PDF
Functional programming scala_mod
Kishore
 
PPTX
Lec15_Mutability Immutability-converted.pptx
khanjahanzaib1
 
PDF
Intro to functional programming - Confoo
felixtrepanier
 
PPT
Immutable Classes updated.ppt
mangoman20
 
PPTX
Immutable Classes in Java
Marcus Biel
 
PDF
A Functional Approach to Java: Augmenting Object-Oriented Java Code with Func...
romergalbowx
 
PDF
Pure Functions and Immutable Objects
Victor Rentea
 
PPTX
From Imperative to Functional Programming (for Absolute Beginners)
Alex Bunardzic
 
PDF
Functional Programming with Immutable Data Structures
elliando dias
 
PPTX
When life gives you functions make functional programs!
Aaron Levin
 
PPTX
Introduction to Functional Programming
Dave Fancher
 
PDF
functional groovy
Paul King
 
KEY
Scala: functional programming for the imperative mind
Sander Mak (@Sander_Mak)
 
PPTX
4 cs xii_python_functions _ properties of data object
SanjayKumarMahto1
 
PDF
It's All About Morphisms
Uberto Barbini
 
PPTX
Scala Intro
Alexey (Mr_Mig) Migutsky
 
PPTX
Xebicon2013 scala vsjava_final
Urs Peter
 
Programming picaresque
Bret McGuire
 
Introduction to Functional programming
Ny Fanilo Andrianjafy, B.Eng.
 
Why should a Java programmer shifts towards Functional Programming Paradigm
Tech Triveni
 
Functional programming scala_mod
Kishore
 
Lec15_Mutability Immutability-converted.pptx
khanjahanzaib1
 
Intro to functional programming - Confoo
felixtrepanier
 
Immutable Classes updated.ppt
mangoman20
 
Immutable Classes in Java
Marcus Biel
 
A Functional Approach to Java: Augmenting Object-Oriented Java Code with Func...
romergalbowx
 
Pure Functions and Immutable Objects
Victor Rentea
 
From Imperative to Functional Programming (for Absolute Beginners)
Alex Bunardzic
 
Functional Programming with Immutable Data Structures
elliando dias
 
When life gives you functions make functional programs!
Aaron Levin
 
Introduction to Functional Programming
Dave Fancher
 
functional groovy
Paul King
 
Scala: functional programming for the imperative mind
Sander Mak (@Sander_Mak)
 
4 cs xii_python_functions _ properties of data object
SanjayKumarMahto1
 
It's All About Morphisms
Uberto Barbini
 
Xebicon2013 scala vsjava_final
Urs Peter
 
Ad

More from Sven Efftinge (20)

PDF
Parsing Expression With Xtext
Sven Efftinge
 
PDF
Language Engineering With Xtext
Sven Efftinge
 
PDF
Future of Xtext
Sven Efftinge
 
PDF
Auto-GWT : Better GWT Programming with Xtend
Sven Efftinge
 
PDF
Codegeneration With Xtend
Sven Efftinge
 
KEY
Gwt and Xtend
Sven Efftinge
 
KEY
Domain Specific Languages (EclipseCon 2012)
Sven Efftinge
 
KEY
Xtend @ EclipseCon 2012
Sven Efftinge
 
KEY
Eclipse Xtend
Sven Efftinge
 
PDF
This Is Not Your Father's Java
Sven Efftinge
 
KEY
Getting the most out of Java [Nordic Coding-2010]
Sven Efftinge
 
PDF
Xtext at MDD Day 2010
Sven Efftinge
 
PDF
Dependency Injection for Eclipse developers
Sven Efftinge
 
PDF
Xtext Webinar
Sven Efftinge
 
KEY
Challenges In Dsl Design
Sven Efftinge
 
KEY
Code Generation in Agile Projects
Sven Efftinge
 
KEY
Xtext Eclipse Con
Sven Efftinge
 
KEY
Generic Editor
Sven Efftinge
 
PDF
Eclipse Banking Day
Sven Efftinge
 
PDF
Bessere Softwareentwicklung (Itemis Wintercon)
Sven Efftinge
 
Parsing Expression With Xtext
Sven Efftinge
 
Language Engineering With Xtext
Sven Efftinge
 
Future of Xtext
Sven Efftinge
 
Auto-GWT : Better GWT Programming with Xtend
Sven Efftinge
 
Codegeneration With Xtend
Sven Efftinge
 
Gwt and Xtend
Sven Efftinge
 
Domain Specific Languages (EclipseCon 2012)
Sven Efftinge
 
Xtend @ EclipseCon 2012
Sven Efftinge
 
Eclipse Xtend
Sven Efftinge
 
This Is Not Your Father's Java
Sven Efftinge
 
Getting the most out of Java [Nordic Coding-2010]
Sven Efftinge
 
Xtext at MDD Day 2010
Sven Efftinge
 
Dependency Injection for Eclipse developers
Sven Efftinge
 
Xtext Webinar
Sven Efftinge
 
Challenges In Dsl Design
Sven Efftinge
 
Code Generation in Agile Projects
Sven Efftinge
 
Xtext Eclipse Con
Sven Efftinge
 
Generic Editor
Sven Efftinge
 
Eclipse Banking Day
Sven Efftinge
 
Bessere Softwareentwicklung (Itemis Wintercon)
Sven Efftinge
 
Ad

Recently uploaded (20)

PPTX
Empowering Asian Contributions: The Rise of Regional User Groups in Open Sour...
Shane Coughlan
 
PPTX
Transforming Mining & Engineering Operations with Odoo ERP | Streamline Proje...
SatishKumar2651
 
PDF
Powering GIS with FME and VertiGIS - Peak of Data & AI 2025
Safe Software
 
PPTX
Equipment Management Software BIS Safety UK.pptx
BIS Safety Software
 
PDF
HiHelloHR – Simplify HR Operations for Modern Workplaces
HiHelloHR
 
PPTX
Hardware(Central Processing Unit ) CU and ALU
RizwanaKalsoom2
 
PDF
유니티에서 Burst Compiler+ThreadedJobs+SIMD 적용사례
Seongdae Kim
 
PPTX
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
PDF
SciPy 2025 - Packaging a Scientific Python Project
Henry Schreiner
 
PPTX
Java Native Memory Leaks: The Hidden Villain Behind JVM Performance Issues
Tier1 app
 
PDF
Efficient, Automated Claims Processing Software for Insurers
Insurance Tech Services
 
PPTX
Human Resources Information System (HRIS)
Amity University, Patna
 
PPTX
Writing Better Code - Helping Developers make Decisions.pptx
Lorraine Steyn
 
PPTX
Agentic Automation Journey Session 1/5: Context Grounding and Autopilot for E...
klpathrudu
 
PPTX
Migrating Millions of Users with Debezium, Apache Kafka, and an Acyclic Synch...
MD Sayem Ahmed
 
PDF
Understanding the Need for Systemic Change in Open Source Through Intersectio...
Imma Valls Bernaus
 
PDF
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
PPTX
MailsDaddy Outlook OST to PST converter.pptx
abhishekdutt366
 
PPTX
Coefficient of Variance in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PPTX
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Empowering Asian Contributions: The Rise of Regional User Groups in Open Sour...
Shane Coughlan
 
Transforming Mining & Engineering Operations with Odoo ERP | Streamline Proje...
SatishKumar2651
 
Powering GIS with FME and VertiGIS - Peak of Data & AI 2025
Safe Software
 
Equipment Management Software BIS Safety UK.pptx
BIS Safety Software
 
HiHelloHR – Simplify HR Operations for Modern Workplaces
HiHelloHR
 
Hardware(Central Processing Unit ) CU and ALU
RizwanaKalsoom2
 
유니티에서 Burst Compiler+ThreadedJobs+SIMD 적용사례
Seongdae Kim
 
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
SciPy 2025 - Packaging a Scientific Python Project
Henry Schreiner
 
Java Native Memory Leaks: The Hidden Villain Behind JVM Performance Issues
Tier1 app
 
Efficient, Automated Claims Processing Software for Insurers
Insurance Tech Services
 
Human Resources Information System (HRIS)
Amity University, Patna
 
Writing Better Code - Helping Developers make Decisions.pptx
Lorraine Steyn
 
Agentic Automation Journey Session 1/5: Context Grounding and Autopilot for E...
klpathrudu
 
Migrating Millions of Users with Debezium, Apache Kafka, and an Acyclic Synch...
MD Sayem Ahmed
 
Understanding the Need for Systemic Change in Open Source Through Intersectio...
Imma Valls Bernaus
 
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
MailsDaddy Outlook OST to PST converter.pptx
abhishekdutt366
 
Coefficient of Variance in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
ChiSquare Procedure in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 

Functional programming with Xtend