在最低级别,SWIG通过生成一对访问器函数来处理C++ class member variables,例如从:
class List {
public:
int length;
...
};
SWIG创建:
int List_length_get(List *obj) { return obj->length; }
int List_length_set(List *obj, int value) {
obj->length = value;
return value;
}
我可以提供自己的访问者,并告诉SWIG使用它们来创建一个"虚拟" Python中的成员变量?例如。从这个:
class List {
public:
int setLength(int aLength) { _length = aLength; return _length; }
int getLength() { return _length; }
...
private:
int _length;
...
};
告诉SWIG让我这样做:
>>> l = List();
>>> print(l.length)
在Python中?
答案 0 :(得分:3)
我希望我没有在这里侵犯任何版权。
来自http://swig.10945.n7.nabble.com/attribute-directive-and-C-templates-td11288.html
我最近发现了如何使用
attribute.i
和%attribute
用于创建具有自定义行为的属性的指令,如 以下(多余的)示例:%attribute(Point, int, x, getX, setX); %attribute(Point, int, y, getY, setY); class Point { public: int getX() { return _x }; void setX(int x) { _x = x }; int getY() { return _y }; void setY(int y) { _y = y }; private: int _x; int _y; }