I was wondering if there is any way to pull that in Java. I think it is not possible without native support for closures.
|
|
Currying and partial application is absolutely possible in Java, but the amount of code required will probably turn you off. Some code to demonstrate currying and partial application in Java:
FWIW here is the Haskell equivalent of above Java code:
|
|||||||||
|
|
Java isn't best choice, if you are going to use functional programming techniques. As missingfaktor wrote, you will have to write quite big amount of code to achieve what you want. On the other hand, you are not restricted to Java on JVM - you can use Scala or Clojure which are functional languages (Scala is, in fact, both functional and OO). |
|||
|
|
|
Java 8 (to be released by the end of 2013) does support currying. The example Java code posted in the answer by missingfaktor can be rewritten as:
... which is quite nice. Personally, with Java 8 available I see little reason to use an alternative JVM language such as Scala or Clojure. They provide other language features, of course, but that's not enough to justify the transition cost and the weaker IDE/tooling/libraries support, IMO. |
|||
|
|
|
Currying a method is always possible in Java, but it does not support it in a standard way. Trying to achieve this is complicated and makes the code pretty unreadable. Java is not the appropriate language for this. |
|||
|
|
|
Currying requires to return a function. This is not possible with java (no function pointers) but we can define and return a type that contains a function method:
Now let's curry a simple division. We need a Divider:
and a DivideFunction:
Now we can do a curried division:
|
|||||||||||
|
|
While you can do Currying in Java, it is ugly (because its not supported) In Java is it simpler and faster to use plain loops and simple expressions. If you post an example of where you would use currying, we can suggest alternatives which do the same thing. |
|||||||||||||
|