gpt4 book ai didi

java - 如何将结构作为参数传递给 java 函数或从 jni 返回 java

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:23:28 24 4
gpt4 key购买 nike

我有两个问题假设我在 jni 中有一些结构

struct X
{
Type_A x;
Type_B y;
}

现在我该怎么办?

  1. 将此结构作为参数传递给 java 回调函数
  2. 如何将此结构返回给 Java 函数。

如果可能,请举例。

最佳答案

Java Native Access自动处理细节(除了完全避免 native 编译步骤)。

public class MyStructure extends com.sun.jna.Structure {
public int x;
public int y;
}

它还支持嵌套类型,因此您可以将结构、指针甚至 union 作为结构中的字段。

关于java - 如何将结构作为参数传递给 java 函数或从 jni 返回 java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30120175/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com