SlideShare ist ein Scribd-Unternehmen logo
1 von 19
Real Life FP 
2 
...zurück in der Java Welt 
JUG Bielefeld, 19.11.14 1
Wie finden wir ein Element in einer 
Collection? 
JUG Bielefeld, 19.11.14 2
Java, the good ol‘ days 
• Collections, wie war das noch? 
• < Java5 
– Iterator 
– while(iterator.hasNext()) 
• > Java5 
– for-each Loop 
– for(Typ typ : typCollection) 
JUG Bielefeld, 19.11.14 3
Java, the good ol‘ days 
• ActionListener 
• Comparator 
• Runnable 
• Callable 
Gemeinsamkeiten? 
JUG Bielefeld, 19.11.14 4
Java, the good ol‘ days 
• Single Abstract Method Interfaces (SAM 
Interfaces) 
• Genau eine Methodendeklaration 
• Wird häufig als anonyme innere Klasse 
verwendet 
JUG Bielefeld, 19.11.14 5
Java, the good ol‘ days 
• Funktionale „Vorfahren“ in Java: 
findElement(Collection, Predicate) 
findElement(people, new Predicate() { 
public boolean test(Person person) { 
return person.getName().startsWith(...); 
} 
} 
JUG Bielefeld, 19.11.14 6
Google Guava 
JUG Bielefeld, 19.11.14 7
Google Guava 
• Base 
– Objects.equals/hashCode, Preconditions 
Primitives, CharMatcher, Splitter, Joiner, ... 
• Collections 
– groovy-like Collection Handling in Java 
• Caches, I/O, EventBus, Hashing, ... 
JUG Bielefeld, 19.11.14 8
Google Guava 
• Functions und Predicates 
– Function<A, B> 
• B apply(A input) 
• Transformation! 
– Predicate<T> 
• boolean apply(T input) 
• Filter! 
JUG Bielefeld, 19.11.14 9
Google Guava 
! 
JUG Bielefeld, 19.11.14 10
Google Guava 
Lets see some code! 
JUG Bielefeld, 19.11.14 11
Java 8 
JUG Bielefeld, 19.11.14 12
Java 8 
• Java wird funktional (unter anderem...) 
• FunctionalInterface 
• Und darauf aufbauend... 
• Streams API 
JUG Bielefeld, 19.11.14 13
Java 8 
• Erinnert ihr euch an SAM? 
– Anstatt: 
new Predicate<T>() { 
@Override 
public boolean apply(T input) { 
return input.isFoo(); 
} 
} 
– Einfach: 
( input -> input.isFoo() ) 
JUG Bielefeld, 19.11.14 14
Java 8 
• Wie geht das? 
FunctionalInterface 
– Ein funktionales Interface darf genau EINE 
Methode deklarieren 
– (...mit Ausnahme von default Methoden) 
– Mittels der Annotation @FunctionalInterface wird 
ein normales Interface funktional 
JUG Bielefeld, 19.11.14 15
Java 8 
• Beispiel Predicate: 
@FunctionalInterface 
public interface Predicate<T> { 
boolean test(T t); 
} 
• Verwendung: 
( obj -> obj.isFoo() ) 
JUG Bielefeld, 19.11.14 16
Java 8 
• Streams API 
– „A sequence of elements supporting sequential 
and parallel aggregate operations“ 
– Stream pipelines bestehen aus 
• Einer Datenquelle und 
• 0 oder mehr intermediate 
• und genau einer terminal Operation 
JUG Bielefeld, 19.11.14 17
Java 8 
Lets see some code! 
JUG Bielefeld, 19.11.14 18
Quellen 
• Google Guava: 
– https://code.google.com/p/guava-libraries/wiki/GuavaExplained 
– Und insbesondere: 
– https://code.google.com/p/guava-libraries/wiki/FunctionalExplained 
• Java 8 
– http://www.oracle.com/technetwork/articles/java/lambda-1984522.html 
– http://www.angelikalanger.com/Articles/EffectiveJava/70.Java8.FunctionalPro 
g/70.Java8.FunctionalProg.html 
• Code 
– https://github.com/smartsquare/RealLifeFP 
JUG Bielefeld, 19.11.14 19

Weitere ähnliche Inhalte

Kürzlich hochgeladen

Machine Learning? Ja gerne! Aber was und wie? Eine Kurzanleitung für den erfo...
Machine Learning? Ja gerne! Aber was und wie? Eine Kurzanleitung für den erfo...Machine Learning? Ja gerne! Aber was und wie? Eine Kurzanleitung für den erfo...
Machine Learning? Ja gerne! Aber was und wie? Eine Kurzanleitung für den erfo...OPEN KNOWLEDGE GmbH
 
From Zero to still Zero: Die schönsten Fehler auf dem Weg in die Cloud
From Zero to still Zero: Die schönsten Fehler auf dem Weg in die CloudFrom Zero to still Zero: Die schönsten Fehler auf dem Weg in die Cloud
From Zero to still Zero: Die schönsten Fehler auf dem Weg in die CloudOPEN KNOWLEDGE GmbH
 
Slides (1) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...
Slides (1) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...Slides (1) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...
Slides (1) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...DNUG e.V.
 
Slides (2) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...
Slides (2) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...Slides (2) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...
Slides (2) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...DNUG e.V.
 
Rückwärts denken vorwärts handeln - Requirements Reverse Engineering bei Syst...
Rückwärts denken vorwärts handeln - Requirements Reverse Engineering bei Syst...Rückwärts denken vorwärts handeln - Requirements Reverse Engineering bei Syst...
Rückwärts denken vorwärts handeln - Requirements Reverse Engineering bei Syst...Markus Unterauer
 
FEHLENDE DATEN? (K)EIN PROBLEM!: Die Kunst der Data Imputation
FEHLENDE DATEN? (K)EIN PROBLEM!: Die Kunst der Data ImputationFEHLENDE DATEN? (K)EIN PROBLEM!: Die Kunst der Data Imputation
FEHLENDE DATEN? (K)EIN PROBLEM!: Die Kunst der Data ImputationOPEN KNOWLEDGE GmbH
 

Kürzlich hochgeladen (6)

Machine Learning? Ja gerne! Aber was und wie? Eine Kurzanleitung für den erfo...
Machine Learning? Ja gerne! Aber was und wie? Eine Kurzanleitung für den erfo...Machine Learning? Ja gerne! Aber was und wie? Eine Kurzanleitung für den erfo...
Machine Learning? Ja gerne! Aber was und wie? Eine Kurzanleitung für den erfo...
 
From Zero to still Zero: Die schönsten Fehler auf dem Weg in die Cloud
From Zero to still Zero: Die schönsten Fehler auf dem Weg in die CloudFrom Zero to still Zero: Die schönsten Fehler auf dem Weg in die Cloud
From Zero to still Zero: Die schönsten Fehler auf dem Weg in die Cloud
 
Slides (1) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...
Slides (1) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...Slides (1) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...
Slides (1) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...
 
Slides (2) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...
Slides (2) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...Slides (2) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...
Slides (2) zu Teil 3 der Veranstaltungsreihe Anwendungsentwicklung mit Volt M...
 
Rückwärts denken vorwärts handeln - Requirements Reverse Engineering bei Syst...
Rückwärts denken vorwärts handeln - Requirements Reverse Engineering bei Syst...Rückwärts denken vorwärts handeln - Requirements Reverse Engineering bei Syst...
Rückwärts denken vorwärts handeln - Requirements Reverse Engineering bei Syst...
 
FEHLENDE DATEN? (K)EIN PROBLEM!: Die Kunst der Data Imputation
FEHLENDE DATEN? (K)EIN PROBLEM!: Die Kunst der Data ImputationFEHLENDE DATEN? (K)EIN PROBLEM!: Die Kunst der Data Imputation
FEHLENDE DATEN? (K)EIN PROBLEM!: Die Kunst der Data Imputation
 

Empfohlen

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Empfohlen (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Real lifefp

  • 1. Real Life FP 2 ...zurück in der Java Welt JUG Bielefeld, 19.11.14 1
  • 2. Wie finden wir ein Element in einer Collection? JUG Bielefeld, 19.11.14 2
  • 3. Java, the good ol‘ days • Collections, wie war das noch? • < Java5 – Iterator – while(iterator.hasNext()) • > Java5 – for-each Loop – for(Typ typ : typCollection) JUG Bielefeld, 19.11.14 3
  • 4. Java, the good ol‘ days • ActionListener • Comparator • Runnable • Callable Gemeinsamkeiten? JUG Bielefeld, 19.11.14 4
  • 5. Java, the good ol‘ days • Single Abstract Method Interfaces (SAM Interfaces) • Genau eine Methodendeklaration • Wird häufig als anonyme innere Klasse verwendet JUG Bielefeld, 19.11.14 5
  • 6. Java, the good ol‘ days • Funktionale „Vorfahren“ in Java: findElement(Collection, Predicate) findElement(people, new Predicate() { public boolean test(Person person) { return person.getName().startsWith(...); } } JUG Bielefeld, 19.11.14 6
  • 7. Google Guava JUG Bielefeld, 19.11.14 7
  • 8. Google Guava • Base – Objects.equals/hashCode, Preconditions Primitives, CharMatcher, Splitter, Joiner, ... • Collections – groovy-like Collection Handling in Java • Caches, I/O, EventBus, Hashing, ... JUG Bielefeld, 19.11.14 8
  • 9. Google Guava • Functions und Predicates – Function<A, B> • B apply(A input) • Transformation! – Predicate<T> • boolean apply(T input) • Filter! JUG Bielefeld, 19.11.14 9
  • 10. Google Guava ! JUG Bielefeld, 19.11.14 10
  • 11. Google Guava Lets see some code! JUG Bielefeld, 19.11.14 11
  • 12. Java 8 JUG Bielefeld, 19.11.14 12
  • 13. Java 8 • Java wird funktional (unter anderem...) • FunctionalInterface • Und darauf aufbauend... • Streams API JUG Bielefeld, 19.11.14 13
  • 14. Java 8 • Erinnert ihr euch an SAM? – Anstatt: new Predicate<T>() { @Override public boolean apply(T input) { return input.isFoo(); } } – Einfach: ( input -> input.isFoo() ) JUG Bielefeld, 19.11.14 14
  • 15. Java 8 • Wie geht das? FunctionalInterface – Ein funktionales Interface darf genau EINE Methode deklarieren – (...mit Ausnahme von default Methoden) – Mittels der Annotation @FunctionalInterface wird ein normales Interface funktional JUG Bielefeld, 19.11.14 15
  • 16. Java 8 • Beispiel Predicate: @FunctionalInterface public interface Predicate<T> { boolean test(T t); } • Verwendung: ( obj -> obj.isFoo() ) JUG Bielefeld, 19.11.14 16
  • 17. Java 8 • Streams API – „A sequence of elements supporting sequential and parallel aggregate operations“ – Stream pipelines bestehen aus • Einer Datenquelle und • 0 oder mehr intermediate • und genau einer terminal Operation JUG Bielefeld, 19.11.14 17
  • 18. Java 8 Lets see some code! JUG Bielefeld, 19.11.14 18
  • 19. Quellen • Google Guava: – https://code.google.com/p/guava-libraries/wiki/GuavaExplained – Und insbesondere: – https://code.google.com/p/guava-libraries/wiki/FunctionalExplained • Java 8 – http://www.oracle.com/technetwork/articles/java/lambda-1984522.html – http://www.angelikalanger.com/Articles/EffectiveJava/70.Java8.FunctionalPro g/70.Java8.FunctionalProg.html • Code – https://github.com/smartsquare/RealLifeFP JUG Bielefeld, 19.11.14 19