如何将 vector<T>::push_back 导出到 Python?
Posted
技术标签:
【中文标题】如何将 vector<T>::push_back 导出到 Python?【英文标题】:How can I export vector<T>::push_back to Python? 【发布时间】:2014-12-13 16:40:55 【问题描述】:这个问题会相当简单,我会误解一些琐碎的事情。但由于我几个小时都找不到解决方案,请让我在这里问一个问题。
我想要做的是使用 Boost.Python 将具有某些固定类型 T
(比如 double
)的 std::vector<T>
容器类的 push_back
方法导出到 Python。
为此,我编写了以下代码:
typedef std::vector<double> vector_double;
class_<vector_double>("vector_double")
.def("append", &vector_double::push_back);
但这不会编译并出现以下错误:
/Users/kenta/experiments/bisite/include/bisite/conservation_score.hpp:25:7: note:
candidate constructor (the implicit default constructor) not viable:
requires 0 arguments, but 1 was provided
/Users/kenta/experiments/bisite/src/bisite/pybisite.cpp:90:10: error: no
matching member function for call to 'def'
.def("append", &vector_double::push_back);
~^~~
/usr/local/include/boost/python/class.hpp:234:11: note: candidate template
ignored: couldn't infer template argument 'F'
self& def(char const* name, F f)
^
/usr/local/include/boost/python/class.hpp:224:11: note: candidate function
template not viable: requires single argument 'visitor', but 2 arguments
were provided
self& def(def_visitor<Derived> const& visitor)
... and more candidates
类型推导 (?) 似乎失败了,但我不知道为什么。
当我将vector_double
定义为std::vector<double>
的子类时,上面的代码编译成功。但出于某种原因,我不想这样做。
你能教我解决这个问题吗?
我正在使用带有 -std=c++11
选项和 Boost.Python v1.56.0 的 clang++。
谢谢。
【问题讨论】:
需要注意的是Boost.Python已经有了vector_indexing_suite
,它是专门为暴露std::vector
而制作的。
我以为vector_indexing_suite
只是顾名思义添加了索引相关的方法,但实际上它还添加了append
和extend
方法!
【参考方案1】:
在我看来,问题在于 C++11 中有两个版本的push_back。 尝试这样做
static_cast<void (vector_double::*)(const double&)>(&vector_double::push_back);
【讨论】:
您的解决方案完全解决了问题。谢谢!但保罗的解决方案是充分且惯用的。以上是关于如何将 vector<T>::push_back 导出到 Python?的主要内容,如果未能解决你的问题,请参考以下文章