Code injecting/assembly inlining in Java?

前端 未结 6 730
隐瞒了意图╮
隐瞒了意图╮ 2021-02-03 11:00

I know Java is a secure language but when matrix calculations are needed, can I try something faster?

I am learning __asm{} in C++, Digital-Mars compiler and FASM. I wan

6条回答
  •  萌比男神i
    2021-02-03 11:21

    You use JNI or JNA and call your native functions from Java. Or as an alternative, you have bytecode as InputStream and make a Java class out of it.

提交回复
热议问题