我目前正在使用 SWIG 在我的主 C++ 程序中更轻松地实现小模块。类架构如下:
foo.hpp:
class Foo
{
public:
virtual int pureFunc() = 0;
int func() { return (42); }
};
文件.i:
%module(directors="1") foo
%feature("director") Foo;
%{
#include "foo.hpp"
%}
%include "foo.hpp"
文件.py:
import sys
sys.path.append('.')
import foo
class Bar(foo.Foo):
def __init__(self):
pass
def pureFunc(self):
return 21
lol = Bar()
print lol.pureFunc()
print lol.func()
然后我使用以下命令生成 swig 包装器:
swig -python -c++ file.i
并像这样编译.so:
g++ -fPIC -shared -o _foo.so file_wrap.cxx -I/usr/include/python2.7 -lpython2.7
当我尝试运行 python 脚本时,出现以下错误:
# python file.py
21
Traceback (most recent call last):
File "file.py", line 13, in <module>
print lol.func()
File "/home/volent/dev/CPP/cython/foo.py", line 84, in func
def func(self): return _foo.Foo_func(self)
TypeError: in method 'Foo_func', argument 1 of type 'Foo *'
# _
这表明纯方法的使用是有效的,但我不能使用 .hpp 文件中已经定义的方法。
我试图阅读 SWIG 文档,我看到的关于抽象类和继承的唯一内容是34.4.7 C++ Classes和34.4.8 C++ Inheritance。而且我看不到任何提到这样的案例。