如何调用一个需要指向ctypes结构的指针的C函数?

2024-04-24 01:13:24 发布

您现在位置:Python中文网/ 问答频道 /正文

我面临以下问题。在C中我写了以下内容:

#include <stdio.h>
typedef struct {
double *arr;
int length;
} str;

void f(str*);

int main (void){
   double x[3] = {0.1,0.2,0.3};
   str aa;
   aa.length = 3;
   aa.arr = x;
   f(&aa);
   return 0;
}

void f(str *ss){
   int i;
   printf("%d\n",ss->length);
   for (i=0; i<ss->length; i++) {
      printf("%e\n",ss->arr[i]);
   }
}

如果我把它编译成可执行文件,它就能正常工作。我收到:

^{pr2}$

应该是这样。在建立共享库之后'pointerToStructypes.so'从上面的C代码中,我在python中调用函数f,如下所示:

ptrToDouble = ctypes.POINTER(ctypes.c_double)
class pystruc (ctypes.Structure):
   _fields_=[
             ("length",ctypes.c_int),
             ("arr",ptrToDouble)
            ]
aa = pystruc()
aa.length = ctypes.c_int(4)
xx = numpy.arange(4,dtype=ctypes.c_double)
aa.arr = xx.ctypes.data_as(ptrToDouble)
myfunc = ctypes.CDLL('pointertostrucCtypes.so')
myfunc.f.argtypes = [ctypes.POINTER(pystruc)]

myfunc.f(ctypes.byref(aa))

结果总是打印出一个任意整数,然后给我一个分割错误。因为长度不合适。有人知道我做错了什么吗?在


Tags: somyfuncctypeslengthssintaadouble
1条回答
网友
1楼 · 发布于 2024-04-24 01:13:24

你的字段颠倒了。尝试:

class pystruc (ctypes.Structure):
    _fields_=[
             ("arr",ptrToDouble)
             ("length",ctypes.c_int),
            ]

相关问题 更多 >