需要std::string
输入的函数无法通过带有gcc / 5.2.0的boost.python正确公开;而gcc 4.8.3可以正常工作。
ps。我正在使用预构建的libboost_python.so.1.63。
C ++代码
#include <boost/python.hpp>
#include <iostream>
using namespace boost::python;
void func(const std::string & hi)
{
std::cout<<hi<<std::endl;
}
BOOST_PYTHON_MODULE(example)
{
def("func", &func);
}
Python执行
>>> from example import *
>>> func("hi")
Boost.Python.ArgumentError: Python argument types in
example.func(str)
did not match C++ signature:
func(std::__cxx11::basic_string<char, std::char_traits<char>,
std::allocator<char> >)