I have this piece of code in scala
val wordCounts = logData.flatMap(line => line.split(" ")).map(word => (word, 1)).reduceByKey((a, b) => a + b)
wordCounts.foreach(println(_))
So what does println(_) mean and what should it print?
I have this piece of code in scala
val wordCounts = logData.flatMap(line => line.split(" ")).map(word => (word, 1)).reduceByKey((a, b) => a + b)
wordCounts.foreach(println(_))
So what does println(_) mean and what should it print?
Copyright © 2021 Jogjafile Inc.
As explained in the section "Placeholder Syntax for Anonymous Functions" of the Spec,
is a shortcut for the anonymous function literal
which in turn is a shortcut for something like
in this particular case.
Therefore,
simply prints every element of
wordCounts
.Note that it can also be written even shorter: