How is native code handled by the JVM - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T10:40:48Zhttp://stackoverflow.com/feeds/question/828837http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/828837/how-is-native-code-handled-by-the-jvm1How is native code handled by the JVMGeek2009-05-06T09:37:01Z2009-05-06T09:54:48Z
<p>Consider an case that I have to call C++ code from my Java Program. The C++ code creates thousands of Objects. Where are these dynamic objects stored ? I suspect in the JVM heap because the native code will be a part of the same process as the JVM. </p>
<p>If yes, do the rules of Java Garbage collector thread apply on Objects of the C++ code ?</p>
http://stackoverflow.com/questions/828837/how-is-native-code-handled-by-the-jvm/828875#8288753Answer by ConcernedOfTunbridgeWells for How is native code handled by the JVMConcernedOfTunbridgeWells2009-05-06T09:49:24Z2009-05-06T09:54:48Z<p>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.</p>
<p>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, the runtime calls the <code>finalize()</code> 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.</p>