前言
开发环境:
Centos 7 + Python 3.5.1 + Qt Creator(只是使用Qt Creator编译而已,并没有使用QT的任何库)
Python调用C/C++库,我现在能做到的有两种方式
1.extern “C” 导出(互相传值比较麻烦,不建议使用这种方式):
将C/C++库做成和平常一样的DLL和或者.so,比如:
//.h文件
#include
//.cpp文件
//C/C++ my.so 或者my.dll
enter "C" void printHello()
{
std::cout<<"Hello World"<<std::en
1