码迷,mamicode.com
首页 > 编程语言 > 详细

Python调用C库

时间:2016-04-30 06:35:48      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

Python调用C库

Python可以利用ctypes库很方便地调用C的库函数。 C库例程:

# file: a.c
int sum(int a, int b){
  int t = 0;
  int i = 0;
  for(; i < b;i++) t += a;
  return t;
}
shell> gcc -fPIC -g -c -Wall a.c && gcc -shared -Wl,-soname,liba.so -o liba.so a.o
  Python程序例程:
# file: a.py
import timeit
n=1000000
def s(a,b):
  t = 0
  for i in xrange(b):
    t += a
  return t
print s(10,100)
t = timeit.Timer("s(10,20)", "from __main__ import s")
print t.timeit(n)
del s
import ctypes
a = ctypes.cdll.LoadLibrary("./liba.so")
s = a.sum
print s(10,100)
t = timeit.Timer("s(10,20)", "from __main__ import s")
print t.timeit(n)
  运行比较:
shell> python2.6 a.py
1000
1.94600701332
1000
0.611714839935

Python调用C库

标签:

原文地址:http://www.cnblogs.com/destim/p/5448015.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!