Java 8 Streams | map() and reduce() Example | JavaTechie

preview_player
Показать описание
This tutorial will guide you to understand java 8 stream api map-reduce concept with Realtime implementation

#javatechie #stream #java8

GitHub:

Blogs:

Facebook:

guys if you like this video please do subscribe now and press the bell icon to not miss any update from Java Techie

Disclaimer/Policy:
--------------------------------
Note : All uploaded content in this channel is mine and its not copied from any community , you are free to use source code from above mentioned GitHub account
Рекомендации по теме
Комментарии
Автор

nice explanation with simple examples.

sanketprajakta
Автор

Very Nice content! Greetings from Brazil 🇧🇷

Netalon
Автор

The examples used are simple, crisp and. clear

akjoker
Автор

Thank you so much. I am finding your videos are the clearest I have seen on the subjects. It is truly a pleasure to learn from you.

qwarlockz
Автор

i got out from the interview just because i could not tell the reduce method with map....Now i wont get out for this topic at least 😍
at the end, its just a QUALITY CONTENT

rishikesharora
Автор

I love the way of elocution.. Gohead..

muralikrishna
Автор

I enjoy all your videos. Excellent work sir

rajeshchaurasia
Автор

Very informative video, thanks for creating it, ,

parthec
Автор

int result = numbers
.stream()
.reduce(0, (previousReturnedValue, element) -> previousReturnedValue + element);

suryaenjarapu
Автор

Thank you so much. Your explanation always easy to understandable.

venkyyadav
Автор

Your content explanation always easy to understandable.Pls explain with explain on distributed transaction in micro services.

Srini
Автор

Example : input : { a, b, k, {A, c, G, H, p}}
output : {a, b, k, {c, p}} . How to write stream fn for this. Expection is to remove capital letter from list.

sanjay
Автор

What do you mean by more readable?
In the summation example using iterative approach is also much more readable and verbose also, while in streams if some complex operation is being performed, you cannot debug the intermediate state until terminal operation is performed.

Traditional approach can be understood by even grade 10 student if he has learnt any programming language, why do we call streams more readable?

ashfaqmohammad
Автор

Hi Grate Techie, could please upload rest api and Hibernate Jpa videos..🙏

prashanthdhn
Автор

Map<String, List<CustomObject>> while Customer Object contains two filed Type and coount .type=I, count=10 , type=o,count=20 .I want to display another map which contains Map<String, long> = .eg.Map<I, 20>, MAP<O, 30> and so on. plz help

mirrabiluddin
Автор

Can you please help out for small question:
Q) How can i get top 3 longest words in a given string using java 8

malleswarrao
Автор

Why isn't (a, b) -> a+b a bifunction since we have 2 parameters a and b?

renejacques