vote up 4 vote down star
1

Hello folks,

When programming with C/C++ or Python I sometimes used to have a dictionary with references to functions according to the specified keys. However, I don't really know how to have the same -- or at the very least similar -- behavior in Java allowing me dynamic key-function (or method, in Java slang) association.

Also, I did find the HashMap technique somebody suggested, but is that seriously the best and most elegant way? I mean, it seems like a lot to create a new class for every method I want to use.

I'd really appreciate every input on this.

flag

How is a HashMap different from a dictionary? – Draemon Jul 17 at 19:22

3 Answers

vote up 10 vote down check

You don't need to create a full, name class for each action. You can use anonymous inner classes:

public interface Action<T>
{
    void execute(T item);
}

private static Map<String, Action<Foo>> getActions()
{
    Action<Foo> firstAction = new Action<Foo>() {
        @Override public void execute(Foo item) {
             // Insert implementation here
        }
    };
    Action<Foo> secondAction = new Action<Foo>() {
        @Override public void execute(Foo item) {
             // Insert implementation here
        }
    };
    Action<Foo> thirdAction = new Action<Foo>() {
        @Override public void execute(Foo item) {
             // Insert implementation here
        }
    };
    Map<String, Action<Foo>> actions = new HashMap<String, Action<Foo>>();
    actions.put("first", firstAction);
    actions.put("second", secondAction);
    actions.put("third", thirdAction);
    return actions;
}

(Then store it in a static variable.)

Okay, so it's not nearly as convenient as a lambda expression, but it's not too bad.

link|flag
3  
Execute should be execute, as Java naming conventions recommends – dfa Jul 17 at 19:28
@dfa: Cheers - that's what I get for mixing a .NET delegate name with a Java interface :) – Jon Skeet Jul 17 at 19:51
vote up 1 vote down

The short answer is you need to wrap each method in a class - called a functor.

link|flag
1  
Apache Commons Functor exists to provide this in Java - commons.apache.org/sandbox/functor. Stuff that in your HashMap :) – Jon Jul 17 at 19:38
vote up 0 vote down

What you will need to do if you want to have any sort of Map of functions is wrap the functions in a class.

Start by defining an interface that will define the method signature. Then you will need to implement that interface with any method-wrapper-class.

link|flag

Your Answer

Get an OpenID
or

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