C++和Python的混合编程-Boost::python的编译

2019-02-11  本文已影响0人  JasonLiThirty

视频教程:boost::python库的编译和使用的基本方法


编译boost::python库

//boost::python lib
bjam toolset=msvc-14.0 --with-python threading=multi link=static address-model=64

//--with-python 里面的python需要是python3版本,要求系统能找到你的python,直接在cmd里面输入python能弹出python3说明没有问题

VS工程的配置,编译和基础示例

#ifdef BOOST_PYTHON_STATIC_LIB
#  define BOOST_PYTHON_STATIC_LINK
# elif !defined(BOOST_PYTHON_DYNAMIC_LIB)
#  define BOOST_PYTHON_DYNAMIC_LIB
#endif
#define BOOST_PYTHON_STATIC_LIB

#include <boost/python.hpp>
#include <iostream>

struct StructionData
{
    void hello()
    {
        std::cout << "hello, this is boost::python sample!" << std::endl;
    }
    void printmsg()
    {
        std::cout << "print message done!" << std::endl;
    }
};

BOOST_PYTHON_MODULE(Boost_Python_Sample)
{
    //struct
    boost::python::class_<StructionData>("StructionData")
        .def("hello", &StructionData::hello)
        .def("printmsg", &StructionData::printmsg);
}

//Boost_Python_Sample为导出的模块名
//StructionData为类名
//hello和printmsg是成员函数名

导出的模块名需要和生成的pyd文件名相同

上一篇 下一篇

猜你喜欢

热点阅读