- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
Cython 文档 shows如何使用重载方法声明现有的 C++ 类。
但是,如果我使用重载方法定义自己的 cppclass
...
cdef cppclass point:
float x, y
point():
this.x = 0
this.y = 0
float sum():
return this.x + this.y
float sum(int z): # COMPILE ERROR
return this.x + this.y + z
...我明白了
Function signature does not match previous declaration
重载构造函数会出现同样的错误:
cdef cppclass point:
float x, y
point():
this.x = 0
this.y = 0
point(float X, float Y): # COMPILE ERROR
this.x = X
this.y = Y
float sum():
return this.x + this.y
我是不是做错了,还是缺少这个功能?
更新:默认参数似乎也无法使用:
cdef cppclass point:
float x, y
point(float X=0, float Y=0):
this.x = X
this.y = Y
float sum():
return this.x + this.y
cdef float use_point():
cdef point p
p = point(1, 2)
return p.sum()
... 通过了 Cython,但被 C++ 编译器绊倒了(“参数数量错误”)
最佳答案
正如我在评论中所说:这显然是一个错误/不受支持的功能,因此在 Cython issues list on github 上报告它可能更有用。而不是将其张贴在这里。
但是,如果您对 hacky 短期解决方案感兴趣,那么以下方法可行:
float sum(...):
return this.x + this.y
float sum2 "sum"(int z):
return this.x + this.y + z
# A test function to prove it
def test():
cdef point pt
a = pt.sum()
b = pt.sum(3)
return a,b # returns (0.0, 3.0)
这使用了两个技巧
Cython 允许您通过将函数放在引号中来指定函数的“实际”名称。因此 float sum2 "sum"(int z):
最终调用了函数 sum
,但它欺骗了 Cython,因此它没有注册,而不是你重复使用了相同的姓名。不过,自动 C++ 类型推导将正常工作。
...
(即 C 可变参数)将匹配除 C++ 类型推导机制赋予的最低优先级之外的任何内容。因此 sum(3)
在 sum(...)
之前选择了 sum(int)
。这也阻止了 Cython 对类型的过多思考,并将其留给 C++(根据需要)。缺点是它不会告诉您是否传递了大量无意义的参数列表,而只会默默地调用 (...)
版本。
这个 hack 不适用于构造函数,而且看起来不容易为构造函数工作。
关于python - cppclass Cython/C++ 定义中的重载是否被破坏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42610108/
Cython 文档 shows如何使用重载方法声明现有的 C++ 类。 但是,如果我使用重载方法定义自己的 cppclass ... cdef cppclass point: float x,
我刚开始使用 Cython,我试图替换: cdef class TestClass: int m_A def __init__(self, int a): self.m
我是一名优秀的程序员,十分优秀!