作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想了解如何在 Python3 和 cythonized C++ 函数之间传递字符串值。但是我无法使用 Cython 构建库。
特别是,我不明白如何在source.pyx
中声明字符串返回值和字符串参数。对于 int 类型,它可以正常工作。
我在使用 clang 构建过程中遇到的错误如下:
candidate function not viable: no known conversion from 'PyObject *' (aka '_object *') to 'char *' for 1st argument
我的 source.pyx
如下:
cdef extern from "source.cpp":
cdef str fun(str param)
def pyfun(mystring):
return fun(mystring)
我的 source.cpp
是:
char * fun(char *string) {
return string;
}
最佳答案
除了原始代码中的错误外,我设法使其与以下 source.pyx
一起工作(Python3 中的 bytes
类型与 C++ 中的 char*
之间的转换):
cdef extern from "source.cpp":
cdef char* fun(char* param)
def pyfun(mystring):
mystring_b = mystring.encode('utf-8')
rvalue = fun(mystring_b).decode('utf-8')
return rvalue
如果使用malloc
分配内存在 fun
内它还需要被释放,否则会发生内存泄漏(当使用 C 指针时,总是值得考虑谁拥有内存)。这样做的修改版本是:
from libc.stdlib cimport free
# cdef extern as before
def pyfun(mystring):
cdef char* value_from_fun
mystring_b = mystring.encode('utf-8')
value_from_fun = fun(mystring_b)
try:
return value_from_fun.decode('utf-8')
finally:
free(value_from_fun)
类型转换的方式与以前相同。
根据 hpaulj在原始问题中的评论,这里是带有 libcpp.string
的版本映射 C++ std::string
在 <string>
中定义:
from libcpp.string cimport string
cdef extern from "source.cpp":
cdef string fun(string param)
def pyfun(mystring):
mystring_ = mystring.encode('utf-8')
rvalue = fun(mystring_).decode('utf-8')
return rvalue
关于c++ - 如何将字符串从 Python3 传递给 cythonized C++ 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42678779/
我是一名优秀的程序员,十分优秀!