在helloworld工程中,編寫了一個簡單的兩個數值相加的程式,編譯成為共用庫後,如何使用python對其進行調用呢?
使用ll命令列出目前的目錄下的共用庫,其中共用庫名為libhelloworld.so.0.0.0
複製代碼 代碼如下:
ufo@ufo:~/helloworld/.libs$ ll
總用量 32
drwxr-xr-x 2 ufo ufo 4096 1月 29 14:54 ./
drwxr-xr-x 6 ufo ufo 4096 1月 29 16:08 ../
-rw-r--r-- 1 ufo ufo 3816 1月 29 14:54 helloworld.o
-rw-r--r-- 1 ufo ufo 3956 1月 29 14:54 libhelloworld.a
lrwxrwxrwx 1 ufo ufo 19 1月 29 14:54 libhelloworld.la -> ../libhelloworld.la
-rw-r--r-- 1 ufo ufo 983 1月 29 14:54 libhelloworld.lai
lrwxrwxrwx 1 ufo ufo 22 1月 29 14:54 libhelloworld.so -> libhelloworld.so.0.0.0*
lrwxrwxrwx 1 ufo ufo 22 1月 29 14:54 libhelloworld.so.0 -> libhelloworld.so.0.0.0*
-rwxr-xr-x 1 ufo ufo 9038 1月 29 14:54 libhelloworld.so.0.0.0*
進入python的命令列模式進行C語言實現的兩個數值相加的程式的調用;
複製代碼 代碼如下:
ufo@ufo:~/helloworld/.libs$ python
Python 2.7.4 (default, Sep 26 2013, 03:20:56)
[GCC 4.7.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
載入ctypes類(此類即是調用C語言動態庫的方法)
複製代碼 代碼如下:
>>> import ctypes
開啟目前的目錄的動態庫
複製代碼 代碼如下:
>>> lib=ctypes.cdll.LoadLibrary("./libhelloworld.so.0.0.0")
調用動態庫中的介面
複製代碼 代碼如下:
>>> lib.add(5,7)
12
兩個參數的相加的函數如下:
複製代碼 代碼如下:
ufo@ufo:~/helloworld$ cat helloworld.c
#include <stdio.h>
#include <stdlib.h>
int add(int a, int b)
{
int c = a + b;
return c;
}
編譯動態庫的命令列:
複製代碼 代碼如下:
gcc -shared -fPIC -DPIC helloworld.c -o libhelloworld.so.0.0.0