小言_互联网的博客

胶水语言Python与C/C++的相互调用

431人阅读  评论(0)

准备工作:

python:https://www.python.org/downloads/

Dev-C++:https://sourceforge.net/projects/orwelldevcpp/

gcc和g++:http://mingw-w64.org/doku.php

notepad++:https://notepad-plus.en.softonic.com/

 

一、Python调用C

步骤1:Csayhello.c


  
  1. #include<stdio.h>
  2. void show_hello()
  3. {
  4.     printf( "------------来自C语言的问候-----------\n");
  5.     printf( "-----Peter Zhao says:Hello C world!-----\n\n");
  6. }

步骤2:

命令:gcc Csayhello.c -fPIC -shared -o lib_Csayhello.so

 

步骤3:Psayhello.py


  
  1. from ctypes import *
  2. #加载动态库
  3. lib = cdll.LoadLibrary( r"./lib_Csayhello.so")
  4. lib.show_hello()
  5. print( "-----------来自Python语言的问候--------------")
  6. print( "---Peter Zhao says:Hello Python world,too!---")

步骤4:

命令:python Psayhello.py

注意:python为32位,没有就装一个。

运行结果:

 

二、Python调用C++

步骤1:新建项目dll_demo.dev

步骤2:dllmain.cpp


  
  1. #define DLLEXPORT extern "C" __declspec(dllexport)
  2. DLLEXPORT int multiply(int a, int b) {
  3. return a * b;
  4. }
  5. //两数相加
  6. DLLEXPORT int add(int a, int b) {
  7. return a + b;
  8. }
  9. //两数相减
  10. DLLEXPORT int sub(int a, int b) {
  11. return a-b;
  12. }

步骤3:dll.h


  
  1. int multiply(int, int);
  2. class Mymath {
  3. int sum(int, int);
  4. int sub(int, int);
  5. };

步骤4:编译生成dll_demo.dll

步骤5:Pdll_demo.py


  
  1. import ctypes
  2. #lib = ctypes.cdll.LoadLibrary(r"./dll_demo.dll")
  3. lib = ctypes.WinDLL( r"./dll_demo.dll")
  4. #print(lib)
  5. print(lib.multiply( 80, 95))
  6. print(lib.add( 80, 95))
  7. print(lib.sub( 80, 95))

步骤6:

命令:python Pdll_demo.py

注意:python为32位,没有就装一个。

运行结果:

 

三、C++调用Python函数

步骤1:Caculate.py


  
  1. def add(a,b):
  2. return a+b

步骤2:新建项目test.dev,然后设置一下“项目属性”的链接库、库目录、包含文件目录等3个部分。

步骤3:test.cpp


  
  1. #include <python.h>
  2. #include<iostream>
  3. using namespace std;
  4. int main()
  5. {
  6. Py_Initialize(); //使用python之前,要调用Py_Initialize();这个函数进行初始化
  7. if (!Py_IsInitialized())
  8. {
  9. printf( "初始化失败!");
  10. return 0;
  11. }
  12. PyRun_SimpleString( "import sys");
  13. PyRun_SimpleString( "sys.path.append('./')"); //这一步很重要,修改Python路径
  14. PyObject * pModule = NULL; //声明变量
  15. PyObject * pFunc = NULL; // 声明变量
  16. pModule = PyImport_ImportModule( "Caculate"); //这里是要调用的文件名Caculate.py
  17. if (pModule== NULL)
  18. {
  19. cout << "没找到" << endl;
  20. }
  21. pFunc = PyObject_GetAttrString(pModule, "add"); //这里是要调用的函数名
  22. PyObject* args = Py_BuildValue( "(ii)", 100, 120); //给python函数参数赋值
  23. PyObject* pRet = PyObject_CallObject(pFunc, args); //调用函数
  24. int res = 0;
  25. PyArg_Parse(pRet, "i",&res); //转换返回类型
  26. cout << "res:" << res << endl; //输出结果
  27. Py_Finalize(); //调用Py_Finalize,这个根Py_Initialize相对应的。
  28. return 0;
  29. }

步骤4:编译并运行

运行结果:

 

 


转载:https://blog.csdn.net/xiaozhao_19/article/details/116404112
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场