如何键入map c ++ int **使用swig将值返回给python

时间:2018-05-28 07:02:20

标签: python c++ int swig

以下是我的代码:

int** myfunction()
{
    int **value = new int*[4];
    for(int i=0;i<4;i++)
    {
        value[i] = new int[4];
        memset(value[i], 0, 4*sizeof(int));
    }
    // asign value

    return value;
}

然后我想调用myfunction并使用python列表返回int **类型值,所以我在.i文件中添加了一个类型映射:

%typemap(out) int** {
    $result = PyList_New(4);
    for(int i=0;i<4;i++)
    {
        PyObject *o = PyList_New(4);
        for(int j=0;j<4;j++)
        {
            PyList_SetItem(o,j,PyInt_FromLong((long)$1[i][j]));
        }
        PyList_SetItem($result, i, o);
    }
    delete $1;
}

我在我的python代码中调用myfunction并且什么都没得到。我的代码中有什么不正确的?

1 个答案:

答案 0 :(得分:0)

除了内存泄漏(只删除了外部new而不是内部的),你的代码看起来很好。这是我做的:

<强> test.i

%module test

%typemap(out) int** {
    $result = PyList_New(4);
    for(int i=0;i<4;i++)
    {
        PyObject *o = PyList_New(4);
        for(int j=0;j<4;j++)
        {
            PyList_SetItem(o,j,PyInt_FromLong((long)$1[i][j]));
        }
        delete [] $1[i];
        PyList_SetItem($result, i, o);
    }
    delete [] $1;
}

%inline %{
int** myfunction()
{
    int **value = new int*[4];
    for(int i=0;i<4;i++)
    {
        value[i] = new int[4];
        for(int j=0;j<4;j++)
            value[i][j] = i*4+j;
    }

    return value;
}
%}

使用SWIG和VS2015编译器构建:

swig -c++ -python test.i
cl /EHsc /LD /W3 /MD /Fe_test.pyd /Ic:\python36\include test_wrap.cxx -link /libpath:c:\python36\libs

输出:

>>> import test
>>> test.myfunction()
[[0, 1, 2, 3], [4, 5, 6, 7], [8, 9, 10, 11], [12, 13, 14, 15]]