I am wondering if there is any reasonably good multimethod implementation/library for Java like Lisp has.

I've found just this apparently frozen one: JMMF

link|improve this question

feedback

2 Answers

You could use Clojure which runs on the JVM and has built-in support for multimethods.

link|improve this answer
feedback

There are a few valid alternatives to deal with the multiple dispatch problem, and perhaps these alternatives pretty much justify why it has not been implemented in the language. So, you can use the classical visitor pattern or you can use certain amound of reflection.

There is an outdated MultiJava Project that implemented mutiple dispatch support in Java and there are a couple of other projects out there using reflection to support multimethods in Java: Java Multimethods, Java Multimethods Framework. Perhaps there are even more.

You could also consider an alternative Java-based language which does support multimethods, like Clojure or Groovy (these links point to examples).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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