动态动态数组(struct数组)

时间:2011-12-13 07:22:13

标签: c++ python dll

我有一个名为person的结构如下:

struct person {
    int height, weight;
};

我还创建了一个person数组,如下所示:

struct Arrayofperson {
    int len;   //indicates the length of this array(its supposed to be dynamic)
    person *p; //this is supposed to be the dynamic array of person.
};       

我为person数组的数组执行此操作,如下所示:

struct Array_2d_ofperson{
    int len;   //indicates the length of this array(its supposed to be dynamic)
    Arrayofperson *subarray; //this is supposed to be the dynamic 2d array of person.
};   

这是我的代码:

#include <iostream>
#include "test.h"
using namespace std;

#define DLLEXPORT extern "C" __declspec(dllexport)

DLLEXPORT Arrayofperson create_arr_person(int len) {
    Arrayofperson arr_p;
    arr_p.len = len;
    arr_p.p = new person[len];
    //populate the array here:
    for (int a = 0; a < len; a++) {
        arr_p.p[a].height = a; //yes they're the same, but it doesn't matter for now.
        arr_p.p[a].weight = a; 
    };
    return arr_p;
}

DLLEXPORT void print_arr_person(Arrayofperson pp) {
    printf("length: %d\n", pp.len);
    for (int b = 0; b < pp.len; b++) {
        printf("height, weight %d, %d\n", pp.p[b].height, pp.p[b].weight);
    }; 
}

DLLEXPORT Array_2d_ofperson create_2darr_person(int len, int sublen) {
    Array_2d_ofperson arr_2d_person;
    arr_2d_person.len = len;
    arr_2d_person.subarray = new Arrayofperson[len];

    for (int a = 0; a < len; a++) {
        arr_2d_person.subarray[a].len = sublen;
        arr_2d_person.subarray[a].p = new person[sublen];
        for (int b = 0; b < sublen; b++) {          
            arr_2d_person.subarray[a].p[b].height = b;
            arr_2d_person.subarray[a].p[b].weight = b;
        }
    };

    for (int a = 0; a < len; a++) {
        for (int b = 0; b < sublen; b++) {  
            printf("(a, b): %d, %d", arr_2d_person.subarray[a].p[b].height, arr_2d_person.subarray[a].p[b].weight);
            printf("\n");
        }
    };
    return arr_2d_person;
    cin.get();
}

DLLEXPORT void print_2darr_person(Array_2d_ofperson pp) {
    int len = pp.len;
    int sublen = pp.subarray[0].len; //yes I haven't forgotten that it can change between different subarrays.

    for (int a = 0; a < len; a++) {
        for (int b = 0; b < sublen; b++) {  
            printf("(a, b): %d, %d", pp.subarray[a].p[b].height, pp.subarray[a].p[b].weight);
            printf("\n");
        }
    }; 
}

我打算从上面的代码中创建一个dll(这里为什么不重要)(稍后会有更多的代码)并在python中使用它。所以这是我的问题:

1)当我在python端执行此操作时似乎:

from ctypes import *

test = CDLL('test.dll') //the dll from the code above, yes it works.

arr = test.create_arr_person(6)

test.print_arr_person(arr)

arr2 = test.create_2darr_person(2, 3)

#test.print_2darr_person(arr2)

raw_input('h')

当我尝试打印2d数组时,我得到了用于打印人员阵列的垃圾并从Windows获取访问冲突错误。

所以这是我的问题,按重要性排序(我不想在dll中使用python api,因为dll也可以被其他语言使用)

1)如何使其专用于array / 2darray的内存保留在内存中,这样我就不会遇到访问冲突错误。我尝试过静态Arrayofperson,但它不起作用。

2)如何在二维数组的子数组中轻松访问person而不是这样做。 pp.subarray[a].p[b]。 (我想这样做:pp [a][b],其中pp是2darray of person)。我认为它与重载[ ]运算符有关,但我不熟悉编写类(这就是为什么我现在创建了一个结构)。

3)如何使用相同的方式在python中访问array / 2darray(我想在python中这样做:

test = CDLL('test.dll')
array_of_person = test.create_arr_person(5)
print (array_of_person[0]) #something like this

3 个答案:

答案 0 :(得分:1)

这里的问题是python不知道如何处理你的struct。查看ctypes的文档,它有一个支持的 python 类型列表,可以传递给C函数,以及如何使它处理更多类型的文档。

你编写它的方式,python认为你的所有函数都返回一个int。

您需要阅读http://docs.python.org/library/ctypes.html

编辑: 如果你做得对,你可能最终会从你的C函数返回一个不透明的指向你的结构的指针到python。在你的struct中,你可以使用所有C ++特性,包括好东西,比如std :: vector。

答案 1 :(得分:0)

我试图在Linux机器上编译你的代码(gcc 4.4.3)并且它可以工作。

您是否考虑过使用STL容器(矢量)?您可以使用向量向量生成多维数组,而不必担心内存泄漏。

答案 2 :(得分:0)

您可以使用这样的事实:向量保证是连续的内存块并返回指向第一个元素的指针。

T * p = &v[0]

然后可以将该指针作为普通数组进行访问,并且跨模块边界是安全的。 相同的技术也适用于可以通过指向存储的原始指针访问的std :: strings。

const char * p = s.c_str();

在完成之前,您必须确保持有存储的对象不会意外地超出范围。

多维数组总是可以投影到一个维度上。

1 1 1

2 2 2

3 3 3

可以存储为:

1 1 1 2 2 2 3 3 3