I always wondered why sometimes with function literals we can ignore the curly brace even for multiple statements. To illustrate this, the syntax for a multiline function literal is to enclose the statements with curly braces. Like so,
val fl = (x: Int) => {
println("Add 25 to "+x)
x + 25
}
However, when you pass it to a single-argument function, you can ignore the required curly brace for the function literal.
So for a given function f,
def f( fl: Int => Int ) {
println("Result is "+ fl(5))
}
You can call f() like this,
f( x=> {
println("Add 25 to "+x)
x + 25
})
-------------------------
Add 25 to 5
Result: 30
Or when you use curly braces instead of parenthesis in the function call, you can remove the inner curly braces from the function literal. So the following code will also work,
f{ x=>
println("Add 25 to "+x)
x + 25
}
The above code is more readable and I notice that a lot of examples use this syntax. However, is there any special rule that I may have missed, to explain why this is working as intended?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…