Is it possible to pass a method into a Java method as a parameter? If so, could someone please guide me? This doesn't seem trivial
|
|
A common pattern would be to 'wrap' it within an interface, like
This pattern is known as the Command Pattern. Keep in mind you would be best off creating an interface for your particular usage. If you chose to go with callable, then you'd replace T above with whatever type of return value you expect, such as String. In response to your comment below you could say:
then call it, perhaps using an anonymous inner class:
Keep in mind this is not a 'trick'. It's just java's basic conceptual equivalent to function pointers. |
||||
|
|
You could use Java reflection to do this. The method would be represented as an instance of java.lang.reflect.Method.
|
|||||||||||||||||
|
|
Typically you declare your method as taking some interface with a single method, then you pass in an object that implements that interface. An example is in commons-collections, where you have interfaces for Closure, Transformer, and Predicate, and methods that you pass implementations of those into. Guava is the new improved commons-collections, you can find equivalent interfaces there. So for instance, commons-collections has org.apache.commons.collections.CollectionUtils, which has lots of static methods that take objects passed in, to pick one at random, there's one called exists with this signature:
It takes an object that implements the interface Predicate, which means it has to have a method on it that takes some Object and returns a boolean. So I can call it like this:
and it returns true or false depending on whether Anyway, this is just an example, and commons-collections is outdated. I just forget the equivalent in Guava. |
||||
|
|
|
I used the command pattern that @jk. mentioned, adding a return type:
|
|||
|
|
|
Java supports closures just fine. It just doesn't support functions, so the syntax you're used to for closures is much more awkward and bulky: you have to wrap everything up in a class with a method. For example,
Will return a Runnable object whose |
|||||
|
|
Java does not (yet) support closures. But there are other languages like Scala and Groovy which run in the JVM and do support closures. |
|||||
|