$show=/label

What's the difference between map() and flatMap() methods in Java 8?

SHARE:

A quick guide to learn what's the difference between Stream.map() and Stream.flatMap() methods in Java 8.

1. Overview


In this article, You'll learn what is the difference between the map() and flatMap() methods in Java 8.

Looks both methods do the same thing but actually not. Let us see each method by example programs. So that you can understand how map() and flatMap() works.

Before reading the article, it is good to have a better understanding of How to Lambda Express in java 8?

Remember, both of these methods are present in the Stream API and as well as in the Optional API.

What's the difference between map() and flatMap() methods in Java 8?


2. Stream map() Method


map() is an intermediate operation which means it returns Stream.

package com.javaprogramto.java8.streams.map;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class Java8MapExample {
    public static void main(String[] args) {

        System.out.println("Output with simple list");
        List<String> vowels = Arrays.asList("A","E","I","O","U");

        vowels.stream().map( vowel -> vowel.toLowerCase()).forEach(value -> System.out.println(value));

        List<String> haiList = new ArrayList<>();

        haiList.add("hello");
        haiList.add("hai");
        haiList.add("hehe");
        haiList.add("hi");

        System.out.println("Output with nested List of List<String>");
        List<String> welcomeList = new ArrayList<>();
        welcomeList.add("You got it");
        welcomeList.add("Don't mention it");
        welcomeList.add("No worries.");
        welcomeList.add("Not a problem");

        List<List<String>> nestedList = Arrays.asList(haiList, welcomeList);
        nestedList.stream().map( list -> {return list.stream().map(value -> value.toUpperCase());}).forEach(value -> System.out.println(value));
    }
}
Output:
Output with simple list
a
e
i
o
u

Output with nested List of List<String>

java.util.stream.ReferencePipeline$3@b684286
java.util.stream.ReferencePipeline$3@880ec60
When you tried to get the values from List<List<String>> then map() does not work properly and need to lots of efforts to get the string values from nested List<String> object.
It has printed the intermediate Stream output rather than the actual values of the List<String>.

3. Stream flatMap() Method

Let us change from map() to flatMap() in the above program and see the output.
package com.javaprogramto.java8.streams.map;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class Java8FlatMapExample {

    public static void main(String[] args) {

        List<String> haiList = new ArrayList<>();
      haiList.add("hello");
        haiList.add("hai");
        haiList.add("hehe");
        haiList.add("hi");
        System.out.println("Output with nested List of List<String>");
        List<String> welcomeList = new ArrayList<>();

        welcomeList.add("You got it");
        welcomeList.add("Don't mention it");
        welcomeList.add("No worries.");
        welcomeList.add("Not a problem");
        List<List<String>> nestedList = Arrays.asList(haiList, welcomeList);
        nestedList.stream().flatMap( list ->  list.stream()).map(value -> value.toUpperCase()).forEach(value -> System.out.println(value));
    }
}
Output:
Output with nested List of List<String>
HELLO
HAI
HEHE
HI
YOU GOT IT
DON'T MENTION IT
NO WORRIES.
NOT A PROBLEM

4. Java 8 map() vs flatMap()

Both map() and flatMap() methods can be applied to a Stream<T> and Optional<T>. And also both return a Stream<R> or Optional<U>. The difference is that the map operation produces one output value for each input value, whereas the flatMap operation produces an arbitrary number (zero or more) values for each input value.
In flatMap(), Each input is always a collection that can be List or Set or Map.
The map operation takes a Function, which is called for each value in the input stream and produces one result value, which is sent to the output stream.

The flatMap operation takes a function that conceptually wants to consume one value and produce an arbitrary number of values. However, in Java, it's cumbersome for a method to return an arbitrary number of values, since methods can return only zero or one value.
package com.javaprogramto.java8.streams.map;

import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.Stream;

public class MapVsFlatMapExample {

    public static void main(String[] args) {
        List<Stream> together = Stream.of(Arrays.asList(1, 2), Arrays.asList(3, 4)) // Stream of List<Integer>
              .map(List::stream)
                .collect(Collectors.toList());

        System.out.println("Output with map() -> "+together);

        List<Integer> togetherFlatMap = Stream.of(Arrays.asList(1, 2), Arrays.asList(3, 4)) // Stream of List<Integer>
                .flatMap(List::stream)
                .map(integer -> integer + 1)
                .collect(Collectors.toList());

        System.out.println("Output with flatMap() -> "+togetherFlatMap);
    }
}
Output:
Output with map() -> [java.util.stream.ReferencePipeline$Head@6e8dacdf, java.util.stream.ReferencePipeline$Head@7a79be86]
Output with flatMap() -> [2, 3, 4, 5]

5. Conclusion

In this article, You've seen what is the main differnece between the map() and flatMap() methods in Java 8.
As usual, all the examples over github.

COMMENTS

BLOGGER

About Us

Author: Venkatesh - I love to learn and share the technical stuff.
Name

accumulo,1,ActiveMQ,2,Adsense,1,API,37,ArrayList,18,Arrays,24,Bean Creation,3,Bean Scopes,1,BiConsumer,1,Blogger Tips,1,Books,1,C Programming,1,Collection,8,Collections,37,Collector,1,Command Line,1,Comparator,1,Compile Errors,1,Configurations,7,Constants,1,Control Statements,8,Conversions,6,Core Java,149,Corona India,1,Create,2,CSS,1,Date,3,Date Time API,38,Dictionary,1,Difference,2,Download,1,Eclipse,3,Efficiently,1,Error,1,Errors,1,Exceptions,8,Fast,1,Files,17,Float,1,Font,1,Form,1,Freshers,1,Function,3,Functional Interface,2,Garbage Collector,1,Generics,4,Git,9,Grant,1,Grep,1,HashMap,2,HomeBrew,2,HTML,2,HttpClient,2,Immutable,1,Installation,1,Interview Questions,6,Iterate,2,Jackson API,3,Java,32,Java 10,1,Java 11,6,Java 12,5,Java 13,2,Java 14,2,Java 8,128,Java 8 Difference,2,Java 8 Stream Conversions,4,java 8 Stream Examples,12,Java 9,1,Java Conversions,14,Java Design Patterns,1,Java Files,1,Java Program,3,Java Programs,114,Java Spark,1,java.lang,4,java.util. function,1,JavaScript,1,jQuery,1,Kotlin,11,Kotlin Conversions,6,Kotlin Programs,10,Lambda,2,lang,29,Leap Year,1,live updates,1,LocalDate,1,Logging,1,Mac OS,3,Math,1,Matrix,6,Maven,1,Method References,1,Mockito,1,MongoDB,3,New Features,1,Operations,1,Optional,6,Oracle,5,Oracle 18C,1,Partition,1,Patterns,1,Programs,1,Property,1,Python,2,Quarkus,1,Read,1,Real Time,1,Recursion,2,Remove,2,Rest API,1,Schedules,1,Serialization,1,Servlet,2,Sort,1,Sorting Techniques,8,Spring,2,Spring Boot,23,Spring Email,1,Spring MVC,1,Streams,31,String,61,String Programs,28,String Revese,1,StringBuilder,1,Swing,1,System,1,Tags,1,Threads,11,Tomcat,1,Tomcat 8,1,Troubleshoot,26,Unix,3,Updates,3,util,5,While Loop,1,
ltr
item
JavaProgramTo.com: What's the difference between map() and flatMap() methods in Java 8?
What's the difference between map() and flatMap() methods in Java 8?
A quick guide to learn what's the difference between Stream.map() and Stream.flatMap() methods in Java 8.
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7V_gVpL4a6Pe8Tmht17t7x8fxIKAo5bE9MUnAgNjaxwaS1PqWt4gHebgd7j9pyVW_hNOhK1-2Bqc-01RR4FGimWIBprVJxDSveguCJ3wAkCGe7wPXa2isztZDkbVVM0wadU8fxU_U6uI/s400/What%2527s+the+difference+between+map%2528%2529+and+flatMap%2528%2529+methods+in+Java+8%253F.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7V_gVpL4a6Pe8Tmht17t7x8fxIKAo5bE9MUnAgNjaxwaS1PqWt4gHebgd7j9pyVW_hNOhK1-2Bqc-01RR4FGimWIBprVJxDSveguCJ3wAkCGe7wPXa2isztZDkbVVM0wadU8fxU_U6uI/s72-c/What%2527s+the+difference+between+map%2528%2529+and+flatMap%2528%2529+methods+in+Java+8%253F.png
JavaProgramTo.com
https://www.javaprogramto.com/2020/07/whats-the-difference-between-map-and-flatmap-methods-in-java-8.html
https://www.javaprogramto.com/
https://www.javaprogramto.com/
https://www.javaprogramto.com/2020/07/whats-the-difference-between-map-and-flatmap-methods-in-java-8.html
true
3124782013468838591
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content