vote up 5 vote down star
1

Hi all,

Can someone please tell me if there is an equivalent for Python's lambda functions in Java?

flag

3 Answers

vote up 11 vote down

Unfortunately, there are no lambdas in Java. However, you can get almost the same effect (in a really ugly way) with anonymous classes:

interface MyLambda {
    void theFunc(); // here we define the interface for the function
}

public class Something {
    static void execute(MyLambda l) {
        l.theFunc(); // this class just wants to use the lambda for something
    }
}

public class Test {
    static void main(String[] args) {
        Something.execute(new MyLambda() { // here we create an anonymous class
            void theFunc() {               // implementing MyLambda
                System.out.println("Hello world!");
            }
        });
    }
}

Obviously these would have to be in separate files :(

link|flag
Lambda can take and will return a value. You want something more like Callable. – Dustin May 30 at 17:40
In addition to being able to accept parameters and return values, lambdas can also access local variables in the scope they were defined. In Java, anonymous classes can access final variables in the scope they were defined in, which is similar enough. OTOH, it might be a good idea for Something to implement Callable. – gooli May 30 at 17:48
Yes, I know about Callable, but I wanted to show the "general" way. – Zifre May 31 at 1:25
vote up 3 vote down

One idea is based on a generic public interface Lambda<T> -- see http://www.javalobby.org/java/forums/t75427.html .

link|flag
vote up 3 vote down

I don't think there is an exact equivalent, however there are anonymous classes that are about as close as you can get. But still pretty different. Joel Spolsky wrote an article about how the students taught only java are missing out on these beauties of functional style programming.

Can Your Programming Language Do This?

link|flag

Your Answer

Get an OpenID
or

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