Java memory Management for JNI(JNI 的 Java 内存管理)
问题描述
我有两个问题:
如果我有一个对方法的 JNI 调用并且 JNI 方法泄漏了内存怎么办.一旦此方法完成,JVM 垃圾收集器将能够取回该内存.听说JVM不管理JNI使用的堆空间?但是JNI使用的内存是Java进程使用的内存的一部分吗?
What if I have a JNI call to a method and the JNI method leaks memory. Once this method completes will the JVM Garbage collector be able to get that memory back. I heard that the JVM does not manage the Heap Space used by JNI ? But the memory used by JNI is a part of the memory used by the Java process ?
一定要使用JNI来实现IPC吗?还有哪些其他流行的 Java 技术,或者有没有开源库来实现 Java 中的共享内存?
Is it absolutely necessary to use JNI to achieve IPC ? What are the other popular Java techniques or is there a Open Source Library to achieve Shared memory in Java ?
推荐答案
- 否:JNI 框架不为在本机端执行的代码分配的非 JVM 内存资源提供任何自动垃圾回收"(维基百科).
- 不,Java 有 套接字 确实是 ProcessBuilder.可以使用 MappedByteBuffer 实现共享内存.
- No: "the JNI framework does not provide any automatic garbage collection for non-JVM memory resources allocated by code executing on the native side" (Wikipedia).
- No, Java has sockets and indeed ProcessBuilder. Shared memory can be achieved with MappedByteBuffer.
这篇关于JNI 的 Java 内存管理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:JNI 的 Java 内存管理
基础教程推荐
- 如何强制对超级方法进行多态调用? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01