我已经实现了一个简单的 C“类”,在结构中使用函数指针来实现成员函数,并将指向结构的指针作为每个函数的第一个参数传递,类似于隐式的“this”指针C++。
%module mytest
%{
typedef struct mytest mytest;
struct mytest {
int data;
int (*func1)(mytest *,int);
void (*func2)(mytest *,int);
};
int f1(mytest *me,int n) { return me->data + n; }
void f2(mytest *me,int n) { me->data += n; }
mytest *mytestNew(int n) {
mytest *me = (mytest*) malloc(sizeof(mytest));
me->data = n;
me->func1 = f1;
me->func2 = f2;
return me;
}
%}
typedef struct mytest mytest;
struct mytest {
int data;
int func1(mytest *,int);
void func2(mytest *,int);
};
extern mytest *mytestNew(int n);
现在我的问题是,当为我在前端选择的任何语言创建接口时,我最终不得不将“this”指针显式传递给对象,即使语言本身支持隐藏它。
例如,假设我选择 Python。我必须做这样的事情:
from mytest import *
m = mytestNew(1)
m.func1(m,0)
我真正想要的是这样做:
from mytest import *
m = mytestNew(1)
m.func1(0)
我知道我可以只写一些包装代码,但是对于我的实际项目,我在现有 C 代码的很多对象中有很多函数,并将其乘以我想要支持的每种语言,这实在是太多的工作!有没有办法让 SWIG 自动执行此操作?