Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用Java(基于Swing)制作了一个游戏引擎,我不想将它翻译成c++并简化这个过程,我想知道如何从c++调用Java api。
基本上我不想做的是使用包装java库并使其可用于c++的包装器。
谢谢。
使用 JNI。尽量保持对原始数据类型的调用。从 c++ 调用 java 并返回时,它需要覆盖。以下可能是一个很好的帮助。
http://www.steveolyo.com/JNI/JNI.html