Is it even possible?
|
|
if you mean an anonymous function then in a word, no. however, you can implement an interface with a function like so :
and you can use this with inner classes to get an almost-anonymous function :) |
|||||||||||||||||
|
|
Here's an example of an anonymous inner class.
This is not very useful as it is, but it shows how to create an instance of an anonymous inner class that See alsoAnonymous inner classes are very handy when you need to implement an Here's an example of how you can sort a
Note the comparison-by-subtraction trick used here. It should be said that this technique is broken in general: it's only applicable when you can guarantee that it will not overflow (such is the case with See also
|
|||||||||||||
|
|
Anonymous inner classes implementing or extending the interface of an existing type has been done in other answers, although it is worth noting that multiple methods can be implemented (often with JavaBean-style events, for instance). A little recognised feature is that although anonymous inner classes don't have a name, they do have a type. New methods can be added to the interface. These methods can only be invoked in limited cases. Chiefly directly on the
(I originally wrote this using |
|||||||||||
|