Call Scala code from C / C ++

If I have a .jar file with a compiled scala method, is there a way to call it from a C / C ++ dll? How can i do this? I could only find the information opposite.

+4
source share
1 answer

The Scala program (after compilation) is a Java class. So, follow this suggestion: How to access the Java method in a C ++ application

+3
source

Source: https://habr.com/ru/post/1661991/


All Articles