c++调用python接口作用是_利用Boost::Python实现C++调用python接口

利用Boost::Python实现C++调用python接口

2019年11月06日

阅读数:7

这篇文章主要向大家介绍利用Boost::Python实现C++调用python接口,主要内容包括基础应用、实用技巧、原理机制等方面,希望对大家有所帮助。

Boost.Python能将C++的结构体暴露给Python使用。可是在运用Boost.Python时,却遇到一个难题,

一、在C++定义一个新的结构体struct A

二、将此结构体暴露给Python解释器

三、现在在工程中生成结构体A的对象,A a。

四、但愿将a传入Python解释器进行运算,运算的函数写在某py文件中。

一直没有办法解决,但愿大虾帮助解答。 python

这个问题就是在c++中调用py实现的接口函数。

相似c++代码

struct a

{

int a ;

int b;

};

a temp;

GetPythonFunc( & temp ); //调用python函数,参数为必定结构体的引用.

这个结构体用boost能够导出给python. 可是这个参数要怎么传递给python代码呢? ios

最后在python mailist找到答案 c++

--------------------------------------------------

#include 

#include 

using namespace boost::python;

class World

{

public:

void set(std::string msg) { this->msg = msg; }

std::string greet() { return msg; }

std::string msg;

};

typedef boost::shared_ptr world_ptr;

BOOST_PYTHON_MODULE(hello)

{

class_("World")

.def("greet", &World::greet)

.def("set", &World::set)

;

register_ptr_to_python();

}

int main(int argc, char *argv[])

{

Py_Initialize();

world_ptr worldObjectPtr (new World);

worldObjectPtr->set("Hello from C++!");

try {

inithello();

PyRun_SimpleString("import hello");

object module(handle<>(borrowed(PyImport_AddModule("__main__"))));

object dictionary = module.attr("__dict__");

dictionary["pyWorldObjectPtr"] = worldObjectPtr;

PyRun_SimpleString("pyWorldObjectPtr.set('Hello from Python!')");

} catch (error_already_set) {

PyErr_Print();

}

std::cout <greet(): " <greet() <<

std::endl;

Py_Finalize();

return 0;

}

--------------------------------------------------

Output:

worldObjectPtr->greet(): Hello from Python!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值