目标:用C++程序调用python模块里面的函数
python 模块: testm.py
函数:testm
具体实现如下:
python 模块代码
def testm(a,b=2):
c=a+b
return c
c++部分代码
#include"Python.h"
#include
#include
using namespace std;
void main()
{
bool c;
int a = 0;
Py_Initialize();
PyRun_SimpleString("print('hellow')");
PyObject*modle = NULL;
PyObject*func = NULL;
PyObject*parm = NULL;
PyObject*result=NULL;
modle = PyImport_ImportModule("testm");
if (!modle)
{
cout << "wrong pyfile" << endl;
system("pause");
}
func = PyObject_GetAttrString(modle, "testm");
if (!func)
{
cout << "wrong func" << endl;
system("pause");
}
parm = Py_BuildValue("i", 10);
result = PyEval_CallObject(func, parm);
PyArg_Parse(result, "i", &a);
cout << a << endl;
Py_DECREF(parm);
Py_DECREF(func);
Py_Finalize();
system("pause");
}
报错内容,a的值还是0,其余部分正常。
问题如下:
第一个,a为什么不是102;
第二个,能不能检验传递参数是否传递成功
第三个,如何传递列表与获得返回列表