标签:链接 load 调用 end pre 方法 dll ++ rar
#include <stdio.h> #include <stdlib.h> int foo(int a, int b) { printf("you input %d and %d\n", a, b); return a+b; }
gcc -o libpycall.so -shared -fPIC pycall.c
import ctypes ll=ctypes.cdll.LoadLibrary lib=ll(‘/Users/***/libpycall.so‘) print lib.foo(1,3)
Python调用c++(类)动态链接库
需要extern "C"来辅助,也就是说还是只能调用C函数,不能直接调用方法,但是能解析C++方法。不是用extern "C",构建后的动态链接库没有这些函数的符号表。
#include <iostream> using namespace std; class TestLib { public: void display(); void display(int a); }; void TestLib::display() { cout<<"First display"<<endl; } void TestLib::display(int a) { cout<<"Second display:"<<a<<endl; } extern "C" { TestLib obj; void display() { obj.display(); } void display_int() { obj.display(2); } }
g++ -o libpycallclass.so -shared -fPIC pycallclass.cpp
import ctypes so = ctypes.cdll.LoadLibrary lib = so("/User/***/libpycallclass.so") print ‘display()‘ lib.display() print ‘display(100)‘ lib.display_int(100)
标签:链接 load 调用 end pre 方法 dll ++ rar
原文地址:http://www.cnblogs.com/qniguoym/p/7690675.html