show/hide this revision's text 2 added 101 characters in body

For the first question, C++ will allocate resources using its own runtime which has nothing to do with the JVM - the JVM is not aware of any activity in this memory allocator.

For the second question, the Java garbage collector will not GC the memory allocated by C++. You will have to make sure that your Java wrapper initiates the memory release. Before an object is GC'd by java, it the runtime calls the finalize() method. The default one is inherited from java.lang.Object and basically does nothing. You can override this and use it as a hook to initiate deallocating your manually managed memory.

show/hide this revision's text 1

For the first question, C++ will allocate resources using its own runtime.

For the second question, the Java garbage collector will not GC the memory allocated by C++. You will have to make sure that your Java wrapper initiates the memory release. Before an object is GC'd by java, it calls the finalize() method. The default one is inherited from java.lang.Object. You can override this and use it as a hook to initiate deallocating your manually managed memory.