ClassName
を受け入れる C++ 関数にオブジェクト タイプの Python リストを渡すにはどうすればよいvector<ClassName>
ですか?
私が見つけた最高のものは、次のようなものです: example . 残念ながら、コードがクラッシュしてしまい、その理由がわかりません。これが私が使用したものです:
template<typename T>
void python_to_vector(boost::python::object o, vector<T>* v) {
try {
object iter_obj = object(handle<>(PyObject_GetIter(o.ptr())));
return;
for (;;) {
object obj = extract<object>(iter_obj.attr("next")());
// Should launch an exception if it cannot extract T
v->emplace_back(extract<T>(obj));
}
} catch(error_already_set) {
PyErr_Clear();
// If there is an exception (no iterator, extract failed or end of the
// list reached), clear it and exit the function
return;
}
}