What is a first class citizen function?
Does Java supports first class citizen function?
Edit: As mention on Wikepedia
F
The Wikipedia definition is pretty good—it's a function that can be passed around like any other piece of data. Java does not support them. The closest it has is Runnable and Callable objects.
Runnable
Callable