IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> Windows下python用ctypes调用C++程序的动态链接库方法(vs2019) -> 正文阅读

[Python知识库]Windows下python用ctypes调用C++程序的动态链接库方法(vs2019)

先堆(好像没什么用的)参考资料
C++和python的代码如何相互调用?
浅谈python中使用C/C++:ctypes
How to call C / C++ from Python?
https://docs.python.org/3.11/library/ctypes.html
MingW下动态链接库常识
MinGW gcc 生成动态链接库 dll 的一些问题汇总
Python调用C++ 传数组指针参数

Linux下我试了没问题的 python3调用cpp的方法——python调用so
Windows下用mingw一直有问题,没找到解决方法。先记vs的。

visual studio

新建动态链接库项目
在这里插入图片描述
或在项目属性里改
在这里插入图片描述
关闭预编译头
在这里插入图片描述
复制粘贴以下代码。代码还是来自上面提到的那篇博客 python3调用cpp的方法——python调用so,针对MSVC稍作修改。vs给的示例程序没用上。

// test.cpp
#include <iostream>

class Test {
private:
    double _calculate(int a, double b);
public:
    double calculate(int a, double b, char c[], int* d, double* e, char** f);
};

double Test::_calculate(int a, double b) {
    double res = a + b;
    std::cout << "res: " << res << std::endl;
    return res;
}

double Test::calculate(int a, double b, char c[], int* d, double* e, char** f) {
    std::cout << "a: " << a << std::endl;
    std::cout << "b: " << b << std::endl;
    std::cout << "c: " << c << std::endl;
    std::cout << "d: " << d[0] << d[1] << std::endl;
    std::cout << "e: " << e[0] << e[1] << std::endl;
    std::cout << "f: " << f[0] << f[1] << std::endl;
    return this->_calculate(a, b);
}

extern "C" _declspec(dllexport) Test* test_new()
{
        return new Test;
}
extern "C" _declspec(dllexport) double my_calculate(Test* t, int a, double b, char c[], int* d, double* e, char** f)
{
        return t->calculate(a, b, c, d, e, f);
}

编译时注意选release和x64平台。原因:解决Python调试OSError: [WinError 193] %1 不是有效的 Win32 应用程序。release是因为都生成库了也没必要调试了。将编译后生成的dll文件重命名为test.dll。

# main.py
import ctypes

lib = ctypes.cdll.LoadLibrary('./test.dll')
lib.my_calculate.restype = ctypes.c_double


class Test(object):
    def __init__(self):
        self.obj = lib.test_new()

    def calculate(self, a, b, c, d, e, f):
        res = lib.my_calculate(self.obj, a, b, c, d, e, f)
        return res


def convert_type(data):
    ctypes_map = {int: ctypes.c_int,
                  float: ctypes.c_double,
                  str: ctypes.c_char_p
                  }
    input_type = type(data)
    if input_type is list:
        length = len(data)
        if length == 0:
            print("convert type failed...input is " + data)
            return None
        else:
            arr = (ctypes_map[type(data[0])] * length)()
            for i in range(length):
                arr[i] = bytes(data[i], encoding="utf-8") if (type(data[0]) is str) else data[i]
            return arr
    else:
        if input_type in ctypes_map:
            return ctypes_map[input_type](bytes(data, encoding="utf-8") if type(data) is str else data)
        else:
            print("convert type failed...input is " + data)
            return None


if __name__ == '__main__':
    t = Test()
    A1 = 123
    A2 = 0.789
    A3 = "C789"
    A4 = [456, 789]
    A5 = [0.123, 0.456]
    A6 = ["A123", "B456"]
    print(t.calculate(convert_type(A1), convert_type(A2), convert_type(A3), convert_type(A4), convert_type(A5), convert_type(A6)))

一个最简单的例子

// test.cpp
class Test {
public:
    double mysum(double a, double b) { return a + b; };
};
extern "C" _declspec(dllexport) double my_calculate(double a, double b)
{
    Test t;
    return t.mysum(a, b);
}
# main.py
import ctypes
lib = ctypes.cdll.LoadLibrary('./test.dll')
lib.my_calculate.restype = ctypes.c_double
A1 = 123
A2 = 0.789
print(lib.my_calculate(ctypes.c_double(A1), ctypes.c_double(A2)))

一个结构体的例子

Calling C functions from Python - part 1 - using ctypes

// test.cpp
typedef struct{
    double x, y, z;
}Vector3d;
extern "C" _declspec(dllexport) Vector3d Vec_Add(Vector3d a, Vector3d b)
{
    Vector3d ans;
    ans.x = a.x + b.x;
    ans.y = a.y + b.y;
    ans.z = a.z + b.z;
    return ans;
}
# main.py
import ctypes
lib = ctypes.cdll.LoadLibrary('./test.dll')
class Test(ctypes.Structure):
    _fields_ = [("j1", ctypes.c_double), ("j2", ctypes.c_double), ("j3", ctypes.c_double)]
lib.Vec_Add.restype = Test
vectora = Test(1, 2, 3.5)
vectorb = Test(1.5, 2.5, 4.5)
vectorc = lib.Vec_Add(vectora, vectorb)
print(vectorc.j1, vectorc.j2, vectorc.j3)
  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2021-12-15 18:15:03  更:2021-12-15 18:16:45 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 5:42:44-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码