이전 온라인 토론에서 제공된 일부 정보는 오래되었을 수 있지만 Java에서 Clojure를 호출하는 것은 비교적 간단합니다. 단계별 가이드는 다음과 같습니다.
Clojure Jar 준비:
Clojure 기능을 정의하세요. src/com/domain/tiny.clj:
(ns com.domain.tiny) (defn binomial "Calculate the binomial coefficient." [n k] (let [a (inc n)] (loop [b 1 c 1] (if (> b k) c (recur (inc b) (* (/ (- a b) b) c)))))) (defn -binomial "A Java-callable wrapper around the 'binomial' function." [n k] (binomial n k)) (defn -main [] (println (str "(binomial 5 3): " (binomial 5 3))) (println (str "(binomial 10042, 111): " (binomial 10042 111))))
자바 코드:
Clojure 함수를 호출하는 Java 클래스 만들기:
import java.lang.reflect.Method; import com.domain.tiny; public class Main { public static void main(String[] args) { try { Method binomialMethod = Class.forName("com.domain.tiny").getMethod("binomial", int.class, int.class); Integer n = 5; Integer k = 3; Double result = (Double) binomialMethod.invoke(null, n, k); System.out.println("(binomial " + n + " " + k + "): " + result); n = 10042; k = 111; result = (Double) binomialMethod.invoke(null, n, k); System.out.println("(binomial " + n + ", " + k + "): " + result); } catch (Exception e) { System.err.println("Error calling Clojure function: " + e.getMessage()); e.printStackTrace(); } } }
적절한 파일을 사용하여 매니페스트 파일(MANIFEST.MF)을 만듭니다. 종속성:
Manifest-Version: 1.0 Class-Path: tiny.jar:clojure-x.y.z.jar Main-Class: Main
실행 프로그램:
출력은 다음과 유사해야 합니다.
(binomial 5 3): 10.0 (binomial 10042, 111): 4.9068389575068143E263
위 내용은 최신 기술을 사용하여 Java에서 Clojure 함수를 효율적으로 호출하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!