python中调用C++写的动态库

一、环境:Windows XP + Python3.2

1. dll对应的源文件(m.cpp):

#include <stdio.h>

extern "C"
{
    _declspec(dllexport) int add(int a, int b)
    {
        return a+b;
    }

    _declspec(dllexport) void print_sum(unsigned long ulNum)
    {
        while(ulNum != 0)
        {
            printf("The ulNum is : %u\n", ulNum--);
        }
    }
}

2. python源程序:

# coding=GBK

from ctypes import *
import time

if __name__ == ‘__main__‘:
    time_begin = time.clock()

    #dll = CDLL("d.dll")            # 加载dll方式一
    dll = cdll.LoadLibrary("d.dll")    # 加载dll方式二
    print(dll.add(2, 6))            # 调用dll中add方法
    dll.print_sum(100)                # 调用dll中print_sum方法

    t = time.clock() - time_begin    # 计算时间差
    print("Use time: %f" %t)        # 打印耗时时间

运行输出:

E:\Program\Python>del
8
The ulNum is : 100
The ulNum is : 99
The ulNum is : 98
...........
The ulNum is : 2
The ulNum is : 1
Use time: 0.003853

E:\Program\Python>

二、环境:Fedora12 + Python2.6

1. 动态库源文件(a.cpp):

#include <stdio.h>

extern "C"
{
    int add(int a, int b)
    {
        return a+b;
    }

    void print_sum(unsigned long ulNum)
    {
        while(ulNum != 0)
        {
            printf("The ulNum is : %u\n", ulNum--);
        }
    }
}

编译指令:g++ -shared -o liba.so a.cpp

2. python源程序(del.py):

#!/usr/bin/env python
# coding=UTF-8

from ctypes import *
import time

if __name__ == ‘__main__‘:
    time_begin = time.clock()

    dll = CDLL("./liba.so")                    # 加载dll方式一(默认在系统lib库路径下查找.so文件)
    #dll = cdll.LoadLibrary("./liba.so")    # 加载dll方式二
    print(dll.add(2, 6))                    # 调用dll中add方法
    dll.print_sum(10000)                    # 调用dll中print_sum方法

    t = time.clock() - time_begin            # 计算时间差
    print("\nUse time: %s" %t)                # 打印耗时时间

注意:Linux上用Python加载动态库时默认是从系统lib路径下是查找库文件的。所以在python中加载当前路径下的动态库的话,路径要写“./liba.so",否则会提示动态库文件找不到!

http://blog.csdn.net/joeblackzqq/article/details/7405992

http://blog.csdn.net/magictong/article/details/3075478(更详细的说明)

时间: 2024-10-13 16:00:25

python中调用C++写的动态库的相关文章

Qt打开外部程序和文件夹需要注意的细节(Qt调用VC写的动态库,VC需要用C的方式输出函数,否则MinGW32编译过程会报错)

下午写程序中遇到几个小细节,需要在这里记录一下. ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 QProcess *process = new QProcess(this);     QFileInfo fileinfo(appUrl);     QString appPath = QApplication::applicationDirPath()+SAVEDIR+"/"+fileinfo.fileName();     bool res = proce

使用ctypes在Python中调用C++动态库

使用ctypes在Python中调用C++动态库 入门操作 使用ctypes库可以直接调用C语言编写的动态库,而如果是调用C++编写的动态库,需要使用extern关键字对动态库的函数进行声明: #include <iostream> using namespace std; extern "C" { void greet() { cout << "hello python" << endl; } } 将上述的C++程序编译成动态链

java调用dll或so动态库文件(c++/c)

java调用dll或so动态库文件(c++/c) 博客分类: 工作 CC#C++JavaEclipse java调用dll或so动态库文件(c++/c)开发平台:Eclipse3.3.1.1+CDT(cdt-master-4.0.3)+MinGW(MinGW-5.1.4) 一:下面是java调用dll(C++) 1:下载并安装cdt :http://www.eclipse.org/cdt/downloads.php  :选择自己eclipse 支持的cdt插件,下载,并且 通过eclipse--

【转载】cocos2dx 中 Android NDK 加载动态库的问题

原文地址:http://blog.csdn.net/sozell/article/details/10551309 cocos2dx 中 Android NDK 加载动态库的问题 闲聊 最近在接入各个平台的SDK,遇到了不少问题,也从中了解了不少知识,之前一直觉得没啥好写的,毕竟做了4个月的游戏开发,也没有碰上什么真正的大问题,cocos2dx的引擎包得也很好,能让人把大部分时间都关注在游戏逻辑.效果的处理上,当然,之前的libevent还是小坑一下,但是和后来遇到的相比,也算不上什么了. 我最

[Python-MATLAB] 在Python中调用MATLAB的API

可以参考官方的说明文档: http://cn.mathworks.com/help/matlab/matlab_external/get-started-with-matlab-engine-for-python.html MATLAB Engine API的使用文档: http://cn.mathworks.com/help/matlab/matlab-engine-for-python.html 原材料: 1.MATLAB 2015a  32位的 2.Python 2.7.13    32位

在Python中调用C++模块

首先,这是自我转载:YellowTree | STbioinf的文章「在Python中调用C++模块」 在Python中成功实现了对原来C++代码模块的复用!这个好处多多,Python写得快,C++跑得快,那就是既快又快了!方法很简单,以至于我能够用一张截图记录下整个过程(点击图片看大图)! 其实,注意到,必须在原来的C++代码后面添加extern “C”来辅助(C则不需要,这也是与复用C代码时最大的不同点),不然Python在调用这个构建后的动态链接库时是找不到原来的方法或者函数的,说到底还都

使用ctype在python中调用c

之前在python中调用c++是通过命令行调用的,参数传递是使用文件IO的形式,所以会特别慢 现在用ctypes,参数传递传的只是内存中的指针,这就很舒服 现在来总结下如何使用cytpes在python中调用c (Ubuntu系统下) 首先写一个test.c的源码 int add(int a, int b) { return a + b; } 然后编译成.so文件 命令如下 gcc -fPIC -c test.c gcc -shared -o test.so test.o 执行完这两个命令之后就

在Android中调用C#写的WebService(附源代码)

由于项目中要使用Android调用C#写的WebService,于是便有了这篇文章.在学习的过程中,发现在C#中直接调用WebService方便得多,直接添加一个引用,便可以直接使用将WebService当做一个对象使用,利用Vs2010中的代码提示功能就能爽歪歪地把想要的东西全部点出来.在Android调用,麻烦了一点,但是也还好.主要是我们需要自己在代码中确定要调用WebService的方法名是什么,要传给WebService什么参数以及对应的参数名,另外,一些额外的信息比如soap的版本号

Python脚本传参和Python中调用mysqldump

Python脚本传参和Python中调用mysqldump<pre name="code" class="python">#coding=utf-8 import MySQLdb import sys import os # 李红颖编写,用户湖南CLV数据分割使用 print 'dump database:',sys.argv[1] ##传入的第一个参数,数据库名称 print 'dump table:',sys.argv[2] ##传入的第二个参数,表