我想把Java数组作为参数传递给c dll throw JNA,
这是我的代码:
import com.sun.jna.*;
public class Javatest {
public interface CLibrary extends Library {
CLibrary INSTANCE = (CLibrary) Native.loadLibrary(
"test", CLibrary.class);
void test(Pointer p,int width);
}
public static void main(String[] args) {
Pointer p = new Memory(5*Native.getNativeSize(Double.TYPE));
for (int i = 0; i < 5; i++) {
p.setDouble(i*Native.getNativeSize(Double.TYPE),5);
}
CLibrary.INSTANCE.test(p,5);
}
}
C代码:
#include <stdio.h>
__declspec(dllexport) int test(double *a,int width){
for(int i =0 ; i<width;i++){
printf("%d",a[i]);
}
return 0;
}
结果:00000
看起来指针没有指向正确的内存位置。
最佳答案
你的printf
格式有问题:%d
是整数格式改为尝试%f
。