Cython:ctypedef 函数?
是否可以使用 ctypedef
函数,因为它是 C++ 中的常见模式?喜欢
typedef int (*foo)(int, double, char*)
# Cython equivalent
ctypedef int (*foo)(int, double, char*)
或者至少在不直接声明的情况下将其外部?类似的东西
# myheader.h
typedef int (*foo)(int, double, char*)
# mytest.pyx
extern int (*foo)
Is it possible to ctypedef
a function, as it is a common pattern in C++? Like
typedef int (*foo)(int, double, char*)
# Cython equivalent
ctypedef int (*foo)(int, double, char*)
Or at least to extern it without declaring it directly ? Something similiar to
# myheader.h
typedef int (*foo)(int, double, char*)
# mytest.pyx
extern int (*foo)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是完全可能的:
Yes that's perfectly possible: