我正在编写一个c ++代码来调用python函数,而python函数返回的数组将存储在c ++中的数组中。我能够在c ++中调用python函数,但我只能从Python返回一个值到C ++,我想要返回的是一个数组。下面是我的C ++代码:
int main(int argc, char *argv[])
{
int i;
PyObject *pName, *pModule, *pDict, *pFunc, *pArgs, *pValue;
if (argc < 3)
{
printf("Usage: exe_name python_source function_name\n");
return 1;
}
// Initialize the Python Interpreter
Py_Initialize();
// Build the name object
pName = PyString_FromString(argv[1]);
// Load the module object
pModule = PyImport_Import(pName);
// pDict is a borrowed reference
pDict = PyModule_GetDict(pModule);
// pFunc is also a borrowed reference
pFunc = PyDict_GetItemString(pDict, argv[2]);
pValue = PyObject_CallObject(pFunc, NULL);
if (pValue != NULL)
{
printf("Return of call : %d\n", PyInt_AsLong(pValue));
PyErr_Print();
Py_DECREF(pValue);
}
else
{
PyErr_Print();
}
这里,pValue应该采用的值是一个数组,但是当它只需要一个元素时能够成功执行。
我无法理解数组如何从python传递到C ++。
答案 0 :(得分:3)
Python 列表是1个对象。你能从python返回一个列表并检查你是否用PyList_Check
在C ++中得到它?然后查看PyList_Size
的详细信息,并使用PyList_GetItem
删除项目。
答案 1 :(得分:1)
我能够在Chris的指导下解决上述问题,如下所示:
从Python返回数据时,返回列表而不是数组。
pValue = PyObject_CallObject(pFunc, pArgTuple);
Py_DECREF(pArgTuple);
if (pValue != NULL)
{
printf("Result of call: %d\n", PyList_Check(pValue));
int count = (int) PyList_Size(pValue);
printf("count : %d\n",count);
float temp[count];
PyObject *ptemp, *objectsRepresentation ;
char* a11;
for (i = 0 ; i < count ; i++ )
{
ptemp = PyList_GetItem(pValue,i);
objectsRepresentation = PyObject_Repr(ptemp);
a11 = PyString_AsString(objectsRepresentation);
temp[i] = (float)strtod(a11,NULL);
}
这里,你的临时数组float将保存你从python发送的列表数组。