python调用C&C++
Posted 小小码农Come on
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python调用C&C++相关的知识,希望对你有一定的参考价值。
python调用C程序
一般来说在python调用C/C++程序主要可以分为3步:
- 1、编写C/C++实现程序。
- 2、将C/C++程序编译成动态库。-
- 3、在Python中调用编译生成的库。Python在调用C/C++程序时有一些不同,需要注意。
Python调用C语言程序比较简单,将C语言程序编译好,再使用python中的ctypes模块调用即可。
C语言源码called_c.c
#include<stdio.h>
int foo(int a, int b)
printf("a:%d, b:%d.", a,b);
return 0;
编译
gcc -o libpycall.so -shared -fPIC called_c.c
生成libpycall.so动态库文件,之后就可以在Python中调用foo函数
python程序源码如下:
import ctypes
dll = ctypes.cdll.LoadLibrary
lib = dll('./libpycall.so') //刚刚生成的库文件的路径
lib.foo(1, 3)
运行既可以完成python中调用C程序
Python调用C++类
由于C++支持函数重载,在g++以C++方式编译时编译器会给函数的名称附加上额外的信息,这样ctypes模块就会找不到g++编译生成的函数。因此,要让g++按照C语言的方式编译才可以找到生成的函数名。让编译器以C语言的方式编译就要在代码中使用extern关键字将代码包裹起来。
C++源文件:cpp_called.cpp
//Python调用c++(类)动态链接库
#include <iostream>
using namespace std;
class TestLib
public:
void display();
void display(int a);
;
void TestLib::display()
cout<<"First display"<<endl;
void TestLib::display(int a)
cout<<"Second display:"<<endl;
#这里是中间的一个类,里面包含了对外提供的函数display和display_int
extern "C"
TestLib obj;
void display()
obj.display();
void display_int(int a)
obj.display(a);
在命令行或者终端输入编译命令:
g++ -o libpycallcpp.so -shared -fPIC cpp_called.cpp
生成libpycallcpp.so,在Python中调用。Python文件:py_call_c.py
import ctypes
dll = ctypes.cdll.LoadLibrary
lib = dll('./libpycallcpp.so') //刚刚生成的库文件的路径
lib.display()
lib.display_int(0)
结果
First display
Second display:0
这样就完成了python中调用C++程序了
以上是关于python调用C&C++的主要内容,如果未能解决你的问题,请参考以下文章
要注意Python逻辑运算符与C/C++逻辑运算符的不同(逻辑与逻辑或逻辑非)用Python的if条件语句为示例
_mysql.c(42) : fatal error C1083: Cannot open include file: 'config-win.h':问题的解决 mysql安装pyth