由于Python自动处理内存分配和垃圾收集,因此“指针”的概念在Python中没有意义。boost::python可以方便地处理C++普通指针和智能指针。
创新互联专注于企业成都营销网站建设、网站重做改版、绿春网站定制设计、自适应品牌网站建设、H5开发、商城网站建设、集团公司官网建设、成都外贸网站建设、高端网站制作、响应式网页设计等建站业务,价格优惠性价比高,为绿春等各大城市提供网站开发制作服务。普通指针(raw pointer)C++接口返回普通指针需要用参数return_value_policy
struct A {
static A* create () { return new A; }
std::string hello () { return "Hello, is there anybody in there?"; }
};
BOOST_PYTHON_MODULE(pointer)
{
class_("A",no_init)
.def("create",&A::create, return_value_policy())
.staticmethod("create")
.def("hello",&A::hello)
;
}
A sample python program:
from pointer import *
an_A = A.create()
print an_A.hello()
智能指针(Smart pointers)使用智能指针(例如std::shared_ptr<T>)是在C++中放弃对象所有权的另一种常见方式。这是通过将保持类型作为模板参数包含到class_<>来实现的,如下例所示:
#include#include#includeusing namespace boost;
using namespace std;
using namespace boost::python;
struct A {
static shared_ptr create () { return shared_ptr(new A); }
std::string hello () { return "Just nod if you can hear me!"; }
};
BOOST_PYTHON_MODULE(shared_ptr)
{
class_ >("A",init<>())
.def("create",&A::create )
.staticmethod("create")
.def("hello",&A::hello)
;
}
也可以使用register_ptr_to_python将shared_ptr注册到python。
BOOST_PYTHON_MODULE(shared_ptr)
{
class_("A",init<>())
.def("create",&A::create )
.staticmethod("create")
.def("hello",&A::hello)
;
register_ptr_to_python();
}
A sample python program:
from shared_ptr import *
an_A = A.create()
print an_A.hello()
你是否还在寻找稳定的海外服务器提供商?创新互联www.cdcxhl.cn海外机房具备T级流量清洗系统配攻击溯源,准确流量调度确保服务器高可用性,企业级服务器适合批量采购,新人活动首月15元起,快前往官网查看详情吧