Can someone please tell me if there is an equivalent for Python's lambda functions in Java?
|
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 :( |
|||||||||||||||||
|
|
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: Can Your Programming Language Do This?. |
||||
|
|
|
One idea is based on a generic |
|||
|
|
|
Somewhat similarly to Zifre's, you could create an interface thus
to enable you to write, say
It's still a bit kludgy, yeah, but it has input/output at least. |
||||
|
|