Hi all,
Can someone please tell me if there is an equivalent for Python's lambda functions in Java?
|
1
|
|
|
|
|
|
Unfortunately, there are no lambdas in Java. However, you can get almost the same effect (in a really ugly way) with anonymous classes:
Obviously these would have to be in separate files :( |
||||||
|
|
|
One idea is based on a generic |
||
|
|
|
|
I don't think there is an exact equivalent, however there are anonymous classes that are about as close as you can get. But still pretty different. Joel Spolsky wrote an article about how the students taught only java are missing out on these beauties of functional style programming. |
||
|
|