Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
4  
1  
two questions about the same thing in 15 minutes. Odd. – Bozho Jan 13 '11 at 21:43
1  
@Bozho:May be people need function pointer in java badly ;) – Cratylus Jan 13 '11 at 21:50
you can pass an Object which you have defined some method you want to use as parameter – starcorn Jan 13 '11 at 22:01

6 Answers

up vote 56 down vote accepted

A common pattern would be to 'wrap' it within an interface, like Callable, for example, then you pass in a Callable:

public T myMethod(Callable<T> func) {
    return func.call();
}

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:

public int methodToPass() { 
        // do something
}

public void dansMethod(int i, Callable<Integer> myFunc) {
       // do something
}

then call it, perhaps using an anonymous inner class:

dansMethod(100, new Callable<Integer>() {
   public Integer call() {
        return methodToPass();
   }
});

Keep in mind this is not a 'trick'. It's just java's basic conceptual equivalent to function pointers.

share|improve this answer
Would you be able to show what exactly would be passed into the following: public void DansMethod(int i, <?function?>){ } – Jason Jan 13 '11 at 21:43

You could use Java reflection to do this. The method would be represented as an instance of java.lang.reflect.Method.

import java.lang.reflect.Method;

public class Demo {

    public static void main(String[] args) throws Exception{
        Class[] parameterTypes = new Class[1];
        parameterTypes[0] = String.class;
        Method method1 = Demo.class.getMethod("method1", parameterTypes);

        Demo demo = new Demo();
        demo.method2(demo, method1, "Hello World");
    }

    public void method1(String message) {
        System.out.println(message);
    }

    public void method2(Object object, Method method, String message) throws Exception {
        Object[] parameters = new Object[1];
        parameters[0] = message;
        method.invoke(object, parameters);
    }

}
share|improve this answer
2  
+1 for thinking outside the box. – Tim Bender Jan 13 '11 at 21:43
3  
@Tim Bender: or inside the "mirror" perhaps? – sova Jan 13 '11 at 21:45
Ah Java idiosynchrasies... What would we do without them? – SyntaxT3rr0r Jan 13 '11 at 23:21
HI Blaise Doughan I am getting Execption when i pass INTEGER as parameter. What is the class parameter of INTEGER CLASS i am passing Integer.class was it the correct one ???????????????????? – KK_07k11A0585 Feb 18 '12 at 12:58
22  
@KK_07k11A0585 You may not have written enough question marks to get his attention - try using more. – Paul Bellora Feb 28 '12 at 19:42

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:

static boolean exists(java.util.Collection collection, Predicate predicate) 

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:

CollectionUtils.exists(someCollection, new Predicate() {
    public boolean evaluate(Object object) { 
        return (object.toString() == "a");
    }
});

and it returns true or false depending on whether someCollection contains an object that the predicate returns true for.

Anyway, this is just an example, and commons-collections is outdated. I just forget the equivalent in Guava.

share|improve this answer

I used the command pattern that @jk. mentioned, adding a return type:

public interface Callable<I, O> {

    public O call(I input);

}
share|improve this answer

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,

public Runnable foo(final int x) {
  return new Runnable() {
    public void run() {
      System.out.println(x);
    }
  };
}

Will return a Runnable object whose run() method "closes over" the x passed in, just like in any language that supports first-class functions and closures.

share|improve this answer
1  
this code won't work because you are returning a Runnable but it is expecting an int – user1132959 Feb 5 '12 at 21:36

Java does not (yet) support closures. But there are other languages like Scala and Groovy which run in the JVM and do support closures.

share|improve this answer
5  
Java has supported closures since version 1.0. You're probably talking about lambda expressions or at least functions defined without being syntactically contained in an explicit class definition. – thejoshwolfe Oct 30 '11 at 19:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.