の代わりに使用する場合、Pythonでクラス以下がどのように多形A
的に機能するかを知りたいですか?B
std::shared_ptr
boost::shared_ptr
struct A
{
virtual ~A() {}
};
struct B : A
{
B() {}
virtual ~B() {}
};
void f(const std::shared_ptr<A>& ptr)
{}
BOOST_PYTHON_MODULE(test)
{
class_<A, boost::noncopyable>("A", no_init);
class_<B, std::shared_ptr<B>, bases<A>>("B")
.def(init<>());
def("f", f);
}
boost::get_pointer
メソッドをに対して定義する必要があることを認識しているので、 :std::shared_ptr
の前に次の行が存在することを確認します。#include <boost/python.hpp>
namespace boost {
template<class T> const T* get_pointer(const std::shared_ptr<T>& p)
{
return p.get();
}
template<class T> T* get_pointer(std::shared_ptr<T>& p)
{
return p.get();
}
} // namespace boost
今、Pythonで私は試します:
>>> from test import *
>>> b = B()
>>> f(b)
Traceback (most recent call last):
File "<console>", line 1, in <module>
ArgumentError: Python argument types in
test.f(B)
did not match C++ signature:
f(std::shared_ptr<A>)
注:上記のコードはに対しては正常に機能しますがboost::shared_ptr
、代わりにC++11タイプを使用したいと思います。
ありがとう。