- 论坛徽章:
- 0
|
RT- #include <Python.h>
- #include <iostream>
- #include <string>
- void printDict(PyObject* obj)
- {
- if( !PyDict_Check(obj))
- return;
- PyObject *k,*keys;
- keys = PyDict_Keys(obj);
- for(int i = 0; i < PyList_GET_SIZE(keys); i++)
- {
- k = PyList_GET_ITEM(keys, i);
- char* c_name = PyString_AsString(k);
- printf("%s/n",c_name);
- }
- }
- int main()
- {
- Py_Initialize();
- if(!Py_IsInitialized())
- return -1;
- PyRun_SimpleString("import sys");
- PyRun_SimpleString("sys.path.append('./')");
- //导入模块
- PyObject* pModule=PyImport_ImportModule("second");
- if(!pModule)
- {
- printf("Cant open python file!/n");
- return -1;
- }
- //模块的字典列表
- PyObject* pDict = PyModule_GetDict(pModule);
- if(!pDict)
- {
- printf("Cant find dictionary./n");
- return -1;
- }
- //打印出来看一下
- printDict(pDict);
- //获取Second类
- PyObject* pClassSecond = PyDict_GetItemString(pDict,"Second");
- if( !pClassSecond )
- {
- printf("Cant find second class./n");
- return -1;
- }
- //构造Second的实例
- PyObject* pInstanceSecond = PyInstance_New(pClassSecond,NULL,NULL);
- if( !pInstanceSecond)
- {
- printf("Cant create second instance./n");
- return -1;
- }
- //获取Person类
- PyObject* pClassPerson = PyDict_GetItemString(pDict,"Person");
- if( !pClassPerson )
- {
- printf("Cant find person class./n");
- return -1;
- }
- //构造Person的实例
- PyObject* pInstancePerson = PyInstance_New(pClassPerson,NULL,NULL);
- if( !pInstancePerson )
- {
- printf("Cant find person instance./n");
- return -1;
- }
- PyObject_CallMethod(pInstanceSecond,"invoke","O",pInstancePerson);
- Py_DECREF(pModule); //都需要释放,例子就不写了
- Py_Finalize();
- getchar();
- return 0;
- }
复制代码- #!/usr/bin/python
- # Filename: second.py
- class Person:
- def sayHi(self):
- print 'hi'
- class Second:
- def sayHello(self):
- print 'hello'
- def invoke(self,obj):
- obj.sayHi()
复制代码 网上的例子,PyDict_GetItemString一直返回为空,调用不到 |
|