Help coderanch get a
new server
by contributing to the fundraiser
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

combiner argument on Stream.collect

 
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

could somebody tell me what's the combiner argument on Stream.collect good for. Especially on the Oracle Java Tutorial an example:

1- an Averager Class wich should store the average of a range of ages:


2- then the code which computes the average of ages:

So again my question: what does this combiner argument really do and why do I need it?

the explanation on the site is confusing to me:
combiner: The combiner function takes two result containers and merges their contents. In this example, it modifies an Averager result container by incrementing the count variable by the count member variable of the other Averager instance and adding to the total member variable the value of the other Averager instance's total member variable.

the explanation on Stream.collect is even worst!!!

Thanks for helping
 
best scout
Posts: 1294
Scala IntelliJ IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Pierrot,

actually it's not as complicated as it may sound. Just a little bit strange if you're not familiar with functional programming concepts ;-)

The collect() method basically processes all the elements in the stream and allows you to define how they should be aggregated into a single result (container). In your example it takes an Averager object as an accumulator which contains the intermediate result (in this case the total sum of person's ages and the number of persons counted so far) and returns a new Averager object which represents the old result combined with the current element (= person) of the stream. That's why the third argument to the collect method is called "combiner" in the API documentation. Finally if you call average() on the resulting Averager object you get the average age of all counted persons.

I hope this explanation makes it a little bit clearer what is going on ;-)


Marco


 
Pierrot Mongonnam
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Marco,

many thanks for your quick answer. It's true that I'm not so experienced in functional programming in Java, but I think, I do understand the concept. You are explaining me the general idea of what is going on in the code. I've also understood that. But let's just focus on the Stream.collect method's arguments. for me the average process occurs already in the following fragment code of the Average class:



So why do I still need the following combine method?



Sorry the silly question but as I said the code is somehow confusing for me. Also if you check the Documentation of the method Stream.collect(), the method has as we know, 3 arguments: a supplier, an accumulator and a combiner. So they say calling the method is like running the following code:



so again the silly question: where is this combiner coming into play?

Also in the Documentation,a weird explanation of the combiner:
combiner - an associative, non-interfering, stateless function for combining two values, which must be compatible with the accumulator function

In conclusion, since I don't understand the combiner I could not write my own result container from the scratch

Many thanks again for helping
 
Marco Ehrentreich
best scout
Posts: 1294
Scala IntelliJ IDE Java
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Aah, now I see what you mean ;-)

I must admit I don't know very much about implementation details of the stream API but it seems that with the current implementation in the Oracle JDK the combiner function is only used with parallel streams, i.e. if you'd call roster.parallelStream() instead of roster.stream(). You can easily verify this behavior by setting breakpoints for the methods in your Averager class and running the example in debug mode.

With parallel streams each partition of the whole stream accumulates its partial result in a separate instance of Averager. In this case the combiner function would be used to combine the partial result containers into a single Averager object.

But it seems there are no guarantees if and when the combiner argument is used so you shouldn't make the false assumption that it's only ever used for parallel streams.

Marco
 
Pierrot Mongonnam
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Marco,

what you are describing sounds very coherent. So I'll then try play with the code to get a better understanding. But by all means after your explanations I have a better feeling of what this curious method is doing. Many thanks for have helped!!! By the way I'm just curious are you from Germany? Many thanks again.
 
Marco Ehrentreich
best scout
Posts: 1294
Scala IntelliJ IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You're welcome ;-) Glad that I could help you at least a little bit on that issue.

And yes, I'm from Germany. How did you know? I hope my English isn't THAT bad :-)
 
Pierrot Mongonnam
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
don't worry man. Dein Englisch ist hervorragend!!! No I just knew it from your name, because I'm also leaving in Germany . Danke deine Hilfe nochmals
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic