C++中嵌入python入門2
1. 一個有一個引數的例子
python檔案
#Filename test2.py
def Hello(s):
print "Hello, world!"
print s
cpp檔案
#include <python.h>
int main()
{
Py_Initialize();
PyObject * pModule = NULL;
PyObject * pFunc = NULL;
PyObject * pArg = NULL;
pModule = PyImport_ImportModule("test2");
pFunc = PyObject_GetAttrString(pModule, "Hello");
pArg = Py_BuildValue("(s)", "function with argument");
PyEval_CallObject(pFunc, pArg);
Py_Finalize();
return 0;
}
注意,引數要以tuple元組形式傳入。因為這個函式只要一個引數,所以我們直接使用(s)構造一個元組了。
2. 一個有兩個引數的例子
python檔案中加入以下程式碼,一個加函式
def Add(a, b):
print "a+b=", a+b
cpp檔案,只改了兩行,有註釋的那兩行
#include <python.h>
int main()
{
Py_Initialize();
PyObject * pModule = NULL;
PyObject * pFunc = NULL;
PyObject * pArg = NULL;
pModule = PyImport_ImportModule("test2");
pFunc = PyObject_GetAttrString(pModule, "Add");//終於告別hello world了,開始使用新的函式
pArg = Py_BuildValue("(i,i)", 10, 15);//構造一個元組
PyEval_CallObject(pFunc, pArg);
Py_Finalize();
return 0;
}
其它的就類似了。。。基本上,我們知道了怎麼在c++中使用python中的函式。接下來學習一下如何使用python中的
class。
附:Py_BuildValue的使用例子,來自python documentation:
Py_BuildValue("") None
Py_BuildValue("i", 123) 123
Py_BuildValue("iii", 123, 456, 789) (123, 456, 789)
Py_BuildValue("s", "hello") 'hello'
Py_BuildValue("ss", "hello", "world") ('hello', 'world')
Py_BuildValue("s#", "hello", 4) 'hell'
Py_BuildValue("()") ()
Py_BuildValue("(i)", 123) (123,)
Py_BuildValue("(ii)", 123, 456) (123, 456)
Py_BuildValue("(i,i)", 123, 456) (123, 456)
Py_BuildValue("[i,i]", 123, 456) [123, 456]
Py_BuildValue("{s:i,s:i}",
"abc", 123, "def", 456) {'abc': 123, 'def': 456}
Py_BuildValue("((ii)(ii)) (ii)",
1, 2, 3, 4, 5, 6) (((1, 2), (3, 4)), (5, 6))