How is native code handled by the JVM - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T10:40:48Z http://stackoverflow.com/feeds/question/828837 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/828837/how-is-native-code-handled-by-the-jvm 1 How is native code handled by the JVM Geek 2009-05-06T09:37:01Z 2009-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#828875 3 Answer by ConcernedOfTunbridgeWells for How is native code handled by the JVM ConcernedOfTunbridgeWells 2009-05-06T09:49:24Z 2009-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>