I'm following a tutorial here: https://www.baeldung.com/java-method-handles
In clojure, I've got a simple example:
(import (java.lang.invoke MethodHandles
MethodHandles$Lookup
MethodType
MethodHandle))
(defonce +lookup+ (MethodHandles/lookup))
(def ^MethodHandle concat-handle (.findVirtual +lookup+
String
"concat"
(MethodType/methodType String String)))
(.invokeExact concat-handle (into-array Object ["hello" "there"]))
which gives an error:
Unhandled java.lang.invoke.WrongMethodTypeException
expected (String,String)String but found (Object[])Object
Invokers.java: 476 java.lang.invoke.Invokers/newWrongMethodTypeException
Invokers.java: 485 java.lang.invoke.Invokers/checkExactType
REPL: 26 hara.object.handle/eval17501
REPL: 26 hara.object.handle/eval17501
Compiler.java: 7062 clojure.lang.Compiler/eval
Compiler.java: 7025 clojure.lang.Compiler/eval
core.clj: 3206 clojure.core/eval
core.clj: 3202 clojure.core/eval
main.clj: 243 clojure.main/repl/read-eval-print/f
is there a way to get invoke
working?
You can use
.invokeWithArguments
which will figure out the correct arity from the supplied arguments:Or you can use
.invoke
, but you'll needMethodHandle.asSpreader
to apply the varargs correctly toString.concat
which has fixed arity:I'm not sure how to make this work with
.invokeExact
from Clojure, if it's possible.This answer has more explanation on restrictions of
.invoke
and.invokeExact
.