Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望我的本机函数将 java 对象作为参数并将其写入共享内存中的 jobject 数组以供另一个进程使用。我怎样才能做到这一点 ?谢谢。
您不能跨进程共享 Java 对象。该对象存在于一个虚拟机中,两个进程有不同的虚拟机。(或者您的第二个进程可能根本没有虚拟机。)
您必须从 Java 对象中提取所有实例变量/属性,将它们放入struct(或类似的数据结构)中并共享struct。