JNI Calls different in C vs C++?
I used to have the book Essential JNI. And while it is kinda dated (1998), much of it still works today. If I recall correctly, in C, Java constructs are simply pointers. Thus, in your code, (*env)-> is dereferencing pointers to give you access to the underlying methods. For C++, env is actually an object … Read more