Quantcast
Channel: Choosing between overloaded methods if actual parameter is a lambda - Stack Overflow
Viewing all articles
Browse latest Browse all 3

Answer by biziclop for Choosing between overloaded methods if actual parameter is a lambda

$
0
0

Although @thecoop's answer is correct, there is another aspect of the lambda mechanism worth mentioning.

Lambdas with block bodies fall into two categories: void-compatible and value-compatible.

The lambda in the question is both, because it cannot complete normally (due to the unconditional exception throw) and all the return statements in there are both valueless and returning a value, seeing as there's no return statement at all.

Most lambdas however are either one or the other. And if the lambda is only void-compatible, then the lambda will only be compatible with Runnable.

What is slightly counter-intuitive (but logically correct) is that even though the lambda in the question never returns a value, it is classified as "always returning a value when there's a return".


Viewing all articles
Browse latest Browse all 3

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>