4

考虑以下示例:

#include "Python.h"
#include <boost/python.hpp>
#include <boost/shared_ptr.hpp>

class A {};

class B : public A{};

void foo(boost::shared_ptr<A>& aptr) { }

BOOST_PYTHON_MODULE(mypy)
{
  using namespace boost::python;   
  class_<A, boost::shared_ptr<A> >("A", init<>());
  class_<B, boost::shared_ptr<B>, bases<A> >("B", init<>());
  def("foo", foo);
}

如果我调用 python 代码

import mypy
b = mypy.B()
mypy.foo(b)

我明白了

ArgumentError: Python argument types in
    mypy.foo(B)
did not match C++ signature:
    foo(boost::shared_ptr<A> {lvalue})

我已经用谷歌搜索了很多,但我找不到一个很好的解释/修复/解决方法。非常欢迎任何帮助!

4

1 回答 1

4

问题是您要求对 a 进行非常量引用shared_ptr<A>,而您b在 Python 中的实例根本不包含一个;它包含一个shared_ptr<B>. 虽然 shared_ptr<B>可以隐式转换为shared_ptr<A>shared_ptr<B>& 但不能隐式转换为shared_ptr<A>&

如果您可以修改fooshared_ptr<A>, 或shared_ptr<A> const &,那将解决您的问题。

如果没有,您还需要包装一个接受shared_ptr<B>&.

于 2012-05-19T01:03:14.370 回答