免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1830 | 回复: 1
打印 上一主题 下一主题

[C++] C++如何调用PYTHON? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-04-24 16:50 |只看该作者 |倒序浏览
RT
  1. #include <Python.h>
  2. #include <iostream>
  3. #include <string>
  4. void printDict(PyObject* obj)
  5. {
  6.     if( !PyDict_Check(obj))
  7.         return;
  8.     PyObject *k,*keys;
  9.     keys = PyDict_Keys(obj);
  10.     for(int i = 0; i < PyList_GET_SIZE(keys); i++)
  11.     {
  12.         k = PyList_GET_ITEM(keys, i);
  13.         char* c_name = PyString_AsString(k);
  14.         printf("%s/n",c_name);
  15.     }
  16. }
  17. int main()
  18. {
  19.     Py_Initialize();
  20.     if(!Py_IsInitialized())
  21.        return -1;
  22.     PyRun_SimpleString("import sys");
  23.     PyRun_SimpleString("sys.path.append('./')");
  24.     //导入模块
  25.     PyObject* pModule=PyImport_ImportModule("second");
  26.     if(!pModule)
  27.     {
  28.           printf("Cant open python file!/n");
  29.         return -1;
  30.     }
  31.     //模块的字典列表
  32.     PyObject* pDict = PyModule_GetDict(pModule);
  33.     if(!pDict)
  34.     {
  35.         printf("Cant find dictionary./n");
  36.         return -1;
  37.     }
  38.     //打印出来看一下
  39.     printDict(pDict);
  40.     //获取Second类
  41.     PyObject* pClassSecond = PyDict_GetItemString(pDict,"Second");
  42.     if( !pClassSecond )
  43.     {
  44.         printf("Cant find second class./n");
  45.         return -1;
  46.     }
  47.     //构造Second的实例
  48.     PyObject* pInstanceSecond = PyInstance_New(pClassSecond,NULL,NULL);
  49.     if( !pInstanceSecond)
  50.     {
  51.         printf("Cant create second instance./n");
  52.         return -1;
  53.     }
  54.     //获取Person类
  55.     PyObject* pClassPerson = PyDict_GetItemString(pDict,"Person");
  56.     if( !pClassPerson )
  57.     {
  58.         printf("Cant find person class./n");
  59.         return -1;
  60.     }
  61.     //构造Person的实例
  62.     PyObject* pInstancePerson = PyInstance_New(pClassPerson,NULL,NULL);
  63.     if( !pInstancePerson )
  64.     {
  65.         printf("Cant find person instance./n");
  66.         return -1;
  67.     }
  68.     PyObject_CallMethod(pInstanceSecond,"invoke","O",pInstancePerson);
  69.     Py_DECREF(pModule); //都需要释放,例子就不写了
  70.     Py_Finalize();
  71.     getchar();
  72.     return 0;
  73. }
复制代码
  1. #!/usr/bin/python
  2. # Filename: second.py
  3. class Person:
  4.     def sayHi(self):
  5.         print 'hi'
  6. class Second:
  7.     def sayHello(self):
  8.         print 'hello'
  9.     def invoke(self,obj):
  10.         obj.sayHi()
复制代码
网上的例子,PyDict_GetItemString一直返回为空,调用不到

论坛徽章:
6
技术图书徽章
日期:2013-11-13 11:11:27子鼠
日期:2014-02-20 17:54:13处女座
日期:2014-06-16 17:43:33午马
日期:2014-08-08 09:11:17未羊
日期:2014-08-10 11:57:072015年辞旧岁徽章
日期:2015-03-03 16:54:15
2 [报告]
发表于 2013-04-24 17:05 |只看该作者
这种异步调用写成同步执行的例子么{:3_182:}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP