我正在为python脚本编写C ++扩展,并希望返回多个值,就像我们在python函数中可以做的那样。
python中的简单示例:
def test():
return 0,0
元组似乎是最接近的答案
#include <tuple>
std::tuple<int,int> test(void){
return std::make_tuple(0,0);
}
但是当我编译它时,它会抱怨
TypeError: No to_python (by-value) converter found for C++ type: std::tuple<int, int>
任何人都知道我是否可以使用C ++返回多个值?
修改
这是我的setup.py文件。
#!/usr/bin/env python
from distutils.core import setup
from distutils.extension import Extension
setup(name="PackageName",
ext_modules=[
Extension("foo", ["foo.cpp"],
libraries = ["boost_python"],
extra_compile_args = ["-std=c++11"]
)
])
答案 0 :(得分:1)
您似乎正在使用boost-python。然后应该使用boost :: python :: tuple,而不是std :: tuple。请参阅this page上的示例。