vote up 40 vote down star
15

I have a method that's about 10 lines of code. I want to create more methods that do the exact same thing except for a calculation that's going to change one line of code. This is a perfect application for passing in a function pointer to replace that one line, but Java doesn't have function pointers. What's my best alternative?

flag

9 Answers

vote up 61 vote down check

Anonymous inner class

Say you want to have a function passed in with a String param that returns an int. First you define an interface with the function as its only member, if you can't reuse an existing one.

interface StringFunction {
  int function(String param);
}

A method that takes the pointer would just accept StringFunction instance like so:

public void takingMethod(StringFunction sf) {
   //stuff
   int output = sf.function(input);
   // more stuff
}

And would be called like so:

ref.takingMethod(new StringFunction() {
  public int function(String param) {
    //body
  }
});
link|flag
In that case it would have to be new ParentClass.StringFunction() if its an inner class and you are not calling it from inside the parent class. Anyways, I Think it doest have to be an INNER anonymous class, just an annnymous one – Pablo Fernandez Sep 23 '08 at 18:29
It doesn't need to be anonymous at all. You can re-use these 'functions', or provide slots for data in the class to get something similar to a closure, or static method variables. – rcreswick Sep 23 '08 at 18:41
1  
Real programmers don't even bother with the interface. They just return an anonymous inner subclass of Object that overrides toString(), and parse the returned String to get what they want. Shoot; nobody can mod me +1, Funny here. :) Oh, well. I'm probably not, anyway. – skiphoppy Sep 23 '08 at 19:38
@skiphoppy but, this wasn't a Python question.. ;) – rcreswick Sep 23 '08 at 20:04
2  
This is an example of the "Command Patern", by the way. en.wikipedia.org/wiki/Command_Pattern – Ogre Psalm33 Oct 9 '08 at 16:55
show 2 more comments
vote up 16 vote down

For each "function pointer", I'd create a small functor class that implements your calculation. Define an interface that all the classes will implement, and pass instances of those objects into your larger function. This is a combination of the "command pattern", and "strategy pattern".

@sblundy's example is good.

link|flag
vote up 9 vote down

You need to create an interface that provides the function(s) that you want to pass around. eg:

/**
 * A simple interface to wrap up a function of one argument.
 * 
 * @author rcreswick
 *
 */
public interface Function1<S, T> {

   /**
    * Evaluates this function on it's arguments.
    * 
    * @param a The first argument.
    * @return The result.
    */
   public S eval(T a);

}

Then, when you need to pass a function, you can implement that interface:

List<Integer> result = CollectionUtilities.map(list,
        new Function1<Integer, Integer>() {
           @Override
           public Integer eval(Integer a) {
              return a * a;
           }
        });

Finally, the map function uses the passed in Function1 as follows:

   public static <K,R,S,T> Map<K, R> zipWith(Function2<R,S,T> fn, 
         Map<K, S> m1, Map<K, T> m2, Map<K, R> results){
      Set<K> keySet = new HashSet<K>();
      keySet.addAll(m1.keySet());
      keySet.addAll(m2.keySet());

      results.clear();

      for (K key : keySet) {
         results.put(key, fn.eval(m1.get(key), m2.get(key)));
      }
      return results;
   }

You can often use Runnable instead of your own interface if you don't need to pass in parameters, or you can use various other techniques to make the param count less "fixed" but it's usually a trade-off with type safety. (Or you can override the constructor for your function object to pass in the params that way.. there are lots of approaches, and some work better in certain circumstances.)

link|flag
vote up 4 vote down

When there is a predefined number of different calculations you can do in that one line, using an enum is a quick, yet clear way to implement a strategy pattern.

public enum Operation {
    PLUS {
        public double calc(double a, double b) {
            return a + b;
        }
    },
    TIMES {
        public double calc(double a, double b) {
            return a * b;
        }
    }
     ...

     public abstract double calc(double a, double b);
}

Obviously, the strategy method declaration, as well as exactly one instance of each implementation are all defined in a single class/file.

link|flag
vote up 2 vote down

You may also be interested to hear about work going on for Java 7 involving closures:

What’s the current state of closures in Java?

http://gafter.blogspot.com/2006/08/closures-for-java.html
http://tech.puredanger.com/java7/#closures

link|flag
vote up 2 vote down

Sounds like a strategy pattern to me. Check out fluffycat.com Java patterns.

link|flag
vote up 2 vote down

If you have just one line which is different you could add a parameter such as a flag and a if(flag) statement which calls one line or the other.

link|flag
+1 because sometimes that is just enough. – javashlook Mar 27 at 0:10
vote up 1 vote down

You can also do this (which in some RARE occasions makes sense). The issue (and it is a big issue) is that you lose all the typesafety of using a class/interface and you have to deal with the case where the method does not exist.

It does have the "benefit" that you can ignore access restrictions and call private methods (not shown in the example, but you can call methods that the compiler would normally not let you call).

Again, it is a rare case that this makes sense, but on those occasions it is a nice tool to have.

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;

class Main
{
    public static void main(final String[] argv)
        throws NoSuchMethodException,
               IllegalAccessException,
               IllegalArgumentException,
               InvocationTargetException
    {
        final String methodName;
        final Method method;
        final Main   main;

        main = new Main();

        if(argv.length == 0)
        {
            methodName = "foo";
        }
        else
        {
            methodName = "bar";
        }

        method = Main.class.getDeclaredMethod(methodName, int.class);

        main.car(method, 42);
    }

    private void foo(final int x)
    {
        System.out.println("foo: " + x);
    }

    private void bar(final int x)
    {
        System.out.println("bar: " + x);
    }

    private void car(final Method method,
                     final int    val)
        throws IllegalAccessException,
               IllegalArgumentException,
               InvocationTargetException
    {
        method.invoke(this, val);
    }
}
link|flag
vote up 0 vote down

Check out lambdaj

http://code.google.com/p/lambdaj/

and in particular its new closure feature

http://code.google.com/p/lambdaj/wiki/Closures

and you will find a very readable way to define closure or function pointer without creating meaningless interface or use ugly inner classes

link|flag

Your Answer

Get an OpenID
or

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